Skip to content

Commit

Permalink
wireless: Kconfig: add missing dependency
Browse files Browse the repository at this point in the history
Previous driver changes to airo, atmel, wl3501_cs, and usb_zd1201 need
to include <net/cfg80211.h>, which depends on CFG80211, so add the
missing dependency.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Zhao, Gang <gamerh2o@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
zhao-gang authored and linvjw committed Mar 3, 2014
1 parent f554724 commit 4c59ff2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/net/wireless/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ config LIBERTAS_THINFIRM_USB

config AIRO
tristate "Cisco/Aironet 34X/35X/4500/4800 ISA and PCI cards"
depends on ISA_DMA_API && (PCI || BROKEN)
depends on CFG80211 && ISA_DMA_API && (PCI || BROKEN)
select WIRELESS_EXT
select CRYPTO
select WEXT_SPY
Expand All @@ -73,7 +73,7 @@ config AIRO

config ATMEL
tristate "Atmel at76c50x chipset 802.11b support"
depends on (PCI || PCMCIA)
depends on CFG80211 && (PCI || PCMCIA)
select WIRELESS_EXT
select WEXT_PRIV
select FW_LOADER
Expand Down Expand Up @@ -138,7 +138,7 @@ config AIRO_CS

config PCMCIA_WL3501
tristate "Planet WL3501 PCMCIA cards"
depends on PCMCIA
depends on CFG80211 && PCMCIA
select WIRELESS_EXT
select WEXT_SPY
help
Expand Down Expand Up @@ -168,7 +168,7 @@ config PRISM54

config USB_ZD1201
tristate "USB ZD1201 based Wireless device support"
depends on USB
depends on CFG80211 && USB
select WIRELESS_EXT
select WEXT_PRIV
select FW_LOADER
Expand Down

0 comments on commit 4c59ff2

Please sign in to comment.