diff options
| author | Tom Rini <[email protected]> | 2025-10-03 14:39:22 -0600 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2025-11-12 22:13:03 +0100 |
| commit | 3b0945fb7b97409e84fc660b2d307b81e91bb6d2 (patch) | |
| tree | 78ac0a8b819e0d1de31342bd521e0079735beb1e /drivers/usb | |
| parent | caa740df9cae5ddc74b18b88a4fea43e27b2fdf6 (diff) | |
usb: gadget: spl: Add missing dependency for SPL_USB_GADGET
It makes no sense to ask about nor enable SPL_USB_GADGET without
SPL_FRAMEWORK being enabled. Attempting to do so leads to Kconfig noting
dependency issues. Add the missing dependency.
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Mattijs Korpershoek <[email protected]>
Diffstat (limited to 'drivers/usb')
| -rw-r--r-- | drivers/usb/gadget/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig index 008f8c99a58..f64a3bfb36c 100644 --- a/drivers/usb/gadget/Kconfig +++ b/drivers/usb/gadget/Kconfig @@ -39,6 +39,7 @@ menuconfig USB_GADGET config SPL_USB_GADGET bool "USB Gadget Support in SPL" + depends on SPL_FRAMEWORK help Enable USB Gadget API which allows to enable USB device functions in SPL. |
