linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] staging: Add proper selection of WIRELESS_EXT and WEXT_PRIV
@ 2009-10-01 18:22 Larry Finger
  2009-10-01 18:28 ` John W. Linville
  0 siblings, 1 reply; 2+ messages in thread
From: Larry Finger @ 2009-10-01 18:22 UTC (permalink / raw)
  To: John Linville; +Cc: Johannes Berg, Greg Kroah-Hartman, wireless

After the incorporation of the patch entitled "wext: refactor", some
of the wireless drivers in drivers/staging fail to build because they
need to have CONFIG_WIRELESS_EXT and CONFIG_WEXT_PRIV defined.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
---

John,

I know that Greg K-H maintains staging, but I sent this to you because
your tree is the only one affected at the moment. Greg is Cc'd.

Larry
---

Index: wireless-testing/drivers/staging/rtl8187se/Kconfig
===================================================================
--- wireless-testing.orig/drivers/staging/rtl8187se/Kconfig
+++ wireless-testing/drivers/staging/rtl8187se/Kconfig
@@ -1,6 +1,7 @@
 config RTL8187SE
 	tristate "RealTek RTL8187SE Wireless LAN NIC driver"
 	depends on PCI
-	depends on WIRELESS_EXT
+	select WIRELESS_EXT
+	select WEXT_PRIV
 	default N
 	---help---
Index: wireless-testing/drivers/staging/rtl8192e/Kconfig
===================================================================
--- wireless-testing.orig/drivers/staging/rtl8192e/Kconfig
+++ wireless-testing/drivers/staging/rtl8192e/Kconfig
@@ -1,6 +1,7 @@
 config RTL8192E
 	tristate "RealTek RTL8192E Wireless LAN NIC driver"
 	depends on PCI
-	depends on WIRELESS_EXT
+	select WIRELESS_EXT
+	select WEXT_PRIV
 	default N
 	---help---
Index: wireless-testing/drivers/staging/vt6655/Kconfig
===================================================================
--- wireless-testing.orig/drivers/staging/vt6655/Kconfig
+++ wireless-testing/drivers/staging/vt6655/Kconfig
@@ -1,6 +1,8 @@
 config VT6655
    tristate "VIA Technologies VT6655 support"
-   depends on WIRELESS_EXT && PCI
+   depends on PCI
+   select WIRELESS_EXT
+   select WEXT_PRIV
    ---help---
    This is a vendor-written driver for VIA VT6655.

Index: wireless-testing/drivers/staging/vt6656/Kconfig
===================================================================
--- wireless-testing.orig/drivers/staging/vt6656/Kconfig
+++ wireless-testing/drivers/staging/vt6656/Kconfig
@@ -1,6 +1,8 @@
 config VT6656
 	tristate "VIA Technologies VT6656 support"
-	depends on WIRELESS_EXT && USB
+	depends on USB
+	select WIRELESS_EXT
+	select WEXT_PRIV
 	---help---
 	This is a vendor-written driver for VIA VT6656.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-10-01 18:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-01 18:22 [PATCH] staging: Add proper selection of WIRELESS_EXT and WEXT_PRIV Larry Finger
2009-10-01 18:28 ` John W. Linville

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).