diff options
author | Tom Rini <trini@konsulko.com> | 2024-11-15 10:53:59 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-12-04 14:00:45 -0600 |
commit | ce8b8ce8dc302b7e683223719811713c4e025dd0 (patch) | |
tree | 7c5cd5195e3e6310504b522a5cdd2dcd680a0706 | |
parent | 4b0cf71639ac7c24d2e89242f4cbfe2af8b6c6fb (diff) |
arm: sunxi: Use "imply" for USB without further guards
Given that ARCH_SUNXI already implies that USB_GADGET should be enable,
we should also imply USB being enabled.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index b068468f2e7..ea414fe376a 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1177,7 +1177,6 @@ config ARCH_SUNXI select SUNXI_GPIO select SYS_NS16550 select SYS_THUMB_BUILD if !ARM64 - select USB if DISTRO_DEFAULTS select USB_KEYBOARD if DISTRO_DEFAULTS && USB_HOST select USB_STORAGE if DISTRO_DEFAULTS && USB_HOST select SPL_USE_TINY_PRINTF if SPL @@ -1203,6 +1202,7 @@ config ARCH_SUNXI imply SYSRESET imply SYSRESET_WATCHDOG imply SYSRESET_WATCHDOG_AUTO + imply USB imply USB_GADGET imply WDT |