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 <kris@embeddedTS.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Kris Bahnsen 2022-07-15 14:10:41 -07:00 committed by Yann E. MORIN
parent e23b230a20
commit c74332c780

View File

@ -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