From c74332c780019da16e373c4fde2bb52068e96b99 Mon Sep 17 00:00:00 2001 From: Kris Bahnsen Date: Fri, 15 Jul 2022 14:10:41 -0700 Subject: [PATCH] package/wilc-driver: fix kconfig syntax Sub-options SPI and SDIO weren't rendering as nested options for wilc-driver, instead showing on the same indent level. Move the comment and depends on to bottom of file to correct this. Fixes: 1a47c42b33 ("package/wilc-driver: add missing BR2_LINUX_KERNEL dependency") Signed-off-by: Kris Bahnsen Signed-off-by: Yann E. MORIN --- package/wilc-driver/Config.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/wilc-driver/Config.in b/package/wilc-driver/Config.in index 24a7b05b17..7ed062bb66 100644 --- a/package/wilc-driver/Config.in +++ b/package/wilc-driver/Config.in @@ -17,9 +17,6 @@ config BR2_PACKAGE_WILC_DRIVER https://github.com/embeddedTS/wilc3000-external-module -comment "wilc kernel module needs a Linux kernel to be built" - depends on !BR2_LINUX_KERNEL - if BR2_PACKAGE_WILC_DRIVER config BR2_PACKAGE_WILC_DRIVER_SPI @@ -60,3 +57,6 @@ config BR2_PACKAGE_WILC_DRIVER_SDIO_OOB time division interrupt. endif endif + +comment "wilc kernel module needs a Linux kernel to be built" + depends on !BR2_LINUX_KERNEL