-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Staging: fix wireless drivers depends
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
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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--- |