diff options
author | Robert Marko <robimarko@gmail.com> | 2023-11-08 13:08:55 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-11-08 22:01:44 +0100 |
commit | 67c6be5d3b15a952f449800a80d9078af31c77a1 (patch) | |
tree | ac98be7893e885a970c159669e66ca0fca041ed3 | |
parent | 469577886551d9d941c5144295e4b80238d16d41 (diff) |
gemini: dont select USB driver as module via config
The FOTG210 USB driver is currently being selected as a module directly via
the target kernel config which should not be done and via kmod as well.
So, lets drop the driver selection in the target kernel module as kmod is
sufficient.
Fixes: 585360f0c0ec ("gemini: refresh kernel config")
Signed-off-by: Robert Marko <robimarko@gmail.com>
-rw-r--r-- | target/linux/gemini/config-6.1 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target/linux/gemini/config-6.1 b/target/linux/gemini/config-6.1 index d4b3e66a5d..ae0922f5dc 100644 --- a/target/linux/gemini/config-6.1 +++ b/target/linux/gemini/config-6.1 @@ -422,8 +422,7 @@ CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" CONFIG_UNINLINE_SPIN_UNLOCK=y CONFIG_UNWINDER_ARM=y CONFIG_USB_COMMON=y -CONFIG_USB_FOTG210=m -CONFIG_USB_FOTG210_UDC=y +# CONFIG_USB_FOTG210 is not set CONFIG_USB_GADGET=y CONFIG_USB_GPIO_VBUS=y CONFIG_USB_PHY=y |