From ce8b8ce8dc302b7e683223719811713c4e025dd0 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Fri, 15 Nov 2024 10:53:59 -0600 Subject: [PATCH] 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 Signed-off-by: Tom Rini --- arch/arm/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5