From 2bdec1190381cfefb5ef37c411ab598573cc8ae4 Mon Sep 17 00:00:00 2001 From: Robert Marko Date: Wed, 8 Nov 2023 13:19:37 +0100 Subject: [PATCH] gemini: usb-fotg210: fix FOTG210_HCD setting CONFIG_USB_FOTG210_HCD is a boolean symbol, so it must be set to "y" instead of the default which is to set it as "m". Otherwise you will get prompted to set the symbol during kernel building. Fixes: 585360f0c0ec ("gemini: refresh kernel config") Signed-off-by: Robert Marko --- target/linux/gemini/modules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/gemini/modules.mk b/target/linux/gemini/modules.mk index 21c215ec9f..29a3266f51 100644 --- a/target/linux/gemini/modules.mk +++ b/target/linux/gemini/modules.mk @@ -2,7 +2,7 @@ define KernelPackage/usb-fotg210 TITLE:=Support for FOTG210 USB host and device controllers DEPENDS:=@USB_SUPPORT @TARGET_gemini KCONFIG:=CONFIG_USB_FOTG210 \ - CONFIG_USB_FOTG210_HCD + CONFIG_USB_FOTG210_HCD=y FILES:=$(LINUX_DIR)/drivers/usb/fotg210/fotg210.ko AUTOLOAD:=$(call AutoLoad,50,1) $(call AddDepends/usb) -- 2.30.2