mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 23:23:55 +08:00
ff0b804632
Mainline build reports:
warning: (WL12XX) selects WLCORE which has unmet direct dependencies (NETDEVICES && WLAN && WL_TI && GENERIC_HARDIRQS && MAC80211 && INET)
The INET dependency was added in commit
3c6af5b54f
:
wl1271_main.c:(.text+0x271052): undefined reference to `unregister_inetaddr_
notifier'
wl1271_main.c:(.text+0x2714d7): undefined reference to `register_inetaddr_no
tifier'
Driver is doing some filtering based on IP addresses...
but this driver no longer has that code and it builds fine even when
CONFIG_INET is not enabled, so drop that dependency and eliminate the
kconfig warning message.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Cc: Luciano Coelho <luciano.coelho@nokia.com>
Cc: John W. Linville <linville@tuxdriver.com>
Acked-by: Luciano Coelho <coelho@ti.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
config WLCORE
|
|
tristate "TI wlcore support"
|
|
depends on WL_TI && GENERIC_HARDIRQS && MAC80211
|
|
select FW_LOADER
|
|
---help---
|
|
This module contains the main code for TI WLAN chips. It abstracts
|
|
hardware-specific differences among different chipset families.
|
|
Each chipset family needs to implement its own lower-level module
|
|
that will depend on this module for the common code.
|
|
|
|
If you choose to build a module, it will be called wlcore. Say N if
|
|
unsure.
|
|
|
|
config WLCORE_SPI
|
|
tristate "TI wlcore SPI support"
|
|
depends on WLCORE && SPI_MASTER
|
|
select CRC7
|
|
---help---
|
|
This module adds support for the SPI interface of adapters using
|
|
TI WLAN chipsets. Select this if your platform is using
|
|
the SPI bus.
|
|
|
|
If you choose to build a module, it'll be called wlcore_spi.
|
|
Say N if unsure.
|
|
|
|
config WLCORE_SDIO
|
|
tristate "TI wlcore SDIO support"
|
|
depends on WLCORE && MMC
|
|
---help---
|
|
This module adds support for the SDIO interface of adapters using
|
|
TI WLAN chipsets. Select this if your platform is using
|
|
the SDIO bus.
|
|
|
|
If you choose to build a module, it'll be called wlcore_sdio.
|
|
Say N if unsure.
|
|
|
|
config WL12XX_PLATFORM_DATA
|
|
bool
|
|
depends on WLCORE_SDIO != n || WL1251_SDIO != n
|
|
default y
|