Skip to content

Commit

Permalink
Staging: fix wireless drivers depends
Browse files Browse the repository at this point in the history
These drivers can (erroneously) be enabled even when
CONFIG_NET=n, CONFIG_NETDEVICES=n, CONFIG_WLAN=n, etc.
Stop this.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Randy Dunlap authored and Greg Kroah-Hartman committed Oct 30, 2009
1 parent 049e626 commit b881c6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/rtl8187se/Kconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
config RTL8187SE
tristate "RealTek RTL8187SE Wireless LAN NIC driver"
depends on PCI
depends on PCI && WLAN
depends on WIRELESS_EXT
default N
---help---
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/Kconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
config RTL8192E
tristate "RealTek RTL8192E Wireless LAN NIC driver"
depends on PCI
depends on PCI && WLAN
depends on WIRELESS_EXT
default N
---help---
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192su/Kconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
config RTL8192SU
tristate "RealTek RTL8192SU Wireless LAN NIC driver"
depends on PCI
depends on PCI && WLAN
depends on WIRELESS_EXT
default N
---help---

0 comments on commit b881c6c

Please sign in to comment.