wavelan: move driver to staging
authorJohn W. Linville <linville@tuxdriver.com>
Wed, 28 Oct 2009 20:06:56 +0000 (16:06 -0400)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 30 Oct 2009 20:50:34 +0000 (16:50 -0400)
Move the wavelan driver to drivers/staging.  This is another pre-802.11
driver that has seen virtually no non-API-fixup activity in years, and
for which no active hardware is likely to still exist.  This driver
represents unnecessary ongoing maintenance for no clear benefit.

This patch brought to you by the "hacking" session at the 2009 Kernel
Summit in Tokyo, Japan...

Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
14 files changed:
drivers/net/wireless/Kconfig
drivers/net/wireless/Makefile
drivers/staging/Kconfig
drivers/staging/Makefile
drivers/staging/wavelan/Kconfig [new file with mode: 0644]
drivers/staging/wavelan/Makefile [new file with mode: 0644]
drivers/staging/wavelan/i82586.h [moved from drivers/net/wireless/i82586.h with 100% similarity]
drivers/staging/wavelan/i82593.h [moved from drivers/net/wireless/i82593.h with 100% similarity]
drivers/staging/wavelan/wavelan.c [moved from drivers/net/wireless/wavelan.c with 100% similarity]
drivers/staging/wavelan/wavelan.h [moved from drivers/net/wireless/wavelan.h with 100% similarity]
drivers/staging/wavelan/wavelan.p.h [moved from drivers/net/wireless/wavelan.p.h with 100% similarity]
drivers/staging/wavelan/wavelan_cs.c [moved from drivers/net/wireless/wavelan_cs.c with 100% similarity]
drivers/staging/wavelan/wavelan_cs.h [moved from drivers/net/wireless/wavelan_cs.h with 100% similarity]
drivers/staging/wavelan/wavelan_cs.p.h [moved from drivers/net/wireless/wavelan_cs.p.h with 100% similarity]

index d50b3be..f94188f 100644 (file)
@@ -25,45 +25,6 @@ menuconfig WLAN_PRE80211
          This option does not affect the kernel build, it only
          lets you choose drivers.
 
-config WAVELAN
-       tristate "AT&T/Lucent old WaveLAN & DEC RoamAbout DS ISA support"
-       depends on ISA && WLAN_PRE80211
-       select WIRELESS_EXT
-       select WEXT_SPY
-       select WEXT_PRIV
-       ---help---
-         The Lucent WaveLAN (formerly NCR and AT&T; or DEC RoamAbout DS) is
-         a Radio LAN (wireless Ethernet-like Local Area Network) using the
-         radio frequencies 900 MHz and 2.4 GHz.
-
-         If you want to use an ISA WaveLAN card under Linux, say Y and read
-         the Ethernet-HOWTO, available from
-         <http://www.tldp.org/docs.html#howto>. Some more specific
-         information is contained in
-         <file:Documentation/networking/wavelan.txt> and in the source code
-         <file:drivers/net/wireless/wavelan.p.h>.
-
-         You will also need the wireless tools package available from
-         <http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html>.
-         Please read the man pages contained therein.
-
-         To compile this driver as a module, choose M here: the module will be
-         called wavelan.
-
-config PCMCIA_WAVELAN
-       tristate "AT&T/Lucent old WaveLAN Pcmcia wireless support"
-       depends on PCMCIA && WLAN_PRE80211
-       select WIRELESS_EXT
-       select WEXT_SPY
-       select WEXT_PRIV
-       help
-         Say Y here if you intend to attach an AT&T/Lucent Wavelan PCMCIA
-         (PC-card) wireless Ethernet networking card to your computer.  This
-         driver is for the non-IEEE-802.11 Wavelan cards.
-
-         To compile this driver as a module, choose M here: the module will be
-         called wavelan_cs.  If unsure, say N.
-
 config PCMCIA_NETWAVE
        tristate "Xircom Netwave AirSurfer Pcmcia wireless support"
        depends on PCMCIA && WLAN_PRE80211
index b56c70f..f4a7c8a 100644 (file)
@@ -6,9 +6,7 @@ obj-$(CONFIG_IPW2100) += ipw2x00/
 obj-$(CONFIG_IPW2200) += ipw2x00/
 
 # Obsolete cards
-obj-$(CONFIG_WAVELAN)          += wavelan.o
 obj-$(CONFIG_PCMCIA_NETWAVE)   += netwave_cs.o
-obj-$(CONFIG_PCMCIA_WAVELAN)   += wavelan_cs.o
 
 obj-$(CONFIG_HERMES)           += orinoco/
 
index ca946ca..c1082f2 100644 (file)
@@ -135,5 +135,7 @@ source "drivers/staging/strip/Kconfig"
 
 source "drivers/staging/arlan/Kconfig"
 
+source "drivers/staging/wavelan/Kconfig"
+
 endif # !STAGING_EXCLUDE_BUILD
 endif # STAGING
index ed92324..7bccdd3 100644 (file)
@@ -49,3 +49,5 @@ obj-$(CONFIG_IIO)             += iio/
 obj-$(CONFIG_COWLOOP)          += cowloop/
 obj-$(CONFIG_STRIP)            += strip/
 obj-$(CONFIG_ARLAN)            += arlan/
+obj-$(CONFIG_WAVELAN)          += wavelan/
+obj-$(CONFIG_PCMCIA_WAVELAN)   += wavelan/
diff --git a/drivers/staging/wavelan/Kconfig b/drivers/staging/wavelan/Kconfig
new file mode 100644 (file)
index 0000000..786060e
--- /dev/null
@@ -0,0 +1,38 @@
+config WAVELAN
+       tristate "AT&T/Lucent old WaveLAN & DEC RoamAbout DS ISA support"
+       depends on ISA
+       select WIRELESS_EXT
+       select WEXT_SPY
+       select WEXT_PRIV
+       ---help---
+         The Lucent WaveLAN (formerly NCR and AT&T; or DEC RoamAbout DS) is
+         a Radio LAN (wireless Ethernet-like Local Area Network) using the
+         radio frequencies 900 MHz and 2.4 GHz.
+
+         If you want to use an ISA WaveLAN card under Linux, say Y and read
+         the Ethernet-HOWTO, available from
+         <http://www.tldp.org/docs.html#howto>. Some more specific
+         information is contained in
+         <file:Documentation/networking/wavelan.txt> and in the source code
+         <file:drivers/net/wireless/wavelan.p.h>.
+
+         You will also need the wireless tools package available from
+         <http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html>.
+         Please read the man pages contained therein.
+
+         To compile this driver as a module, choose M here: the module will be
+         called wavelan.
+
+config PCMCIA_WAVELAN
+       tristate "AT&T/Lucent old WaveLAN Pcmcia wireless support"
+       depends on PCMCIA
+       select WIRELESS_EXT
+       select WEXT_SPY
+       select WEXT_PRIV
+       help
+         Say Y here if you intend to attach an AT&T/Lucent Wavelan PCMCIA
+         (PC-card) wireless Ethernet networking card to your computer.  This
+         driver is for the non-IEEE-802.11 Wavelan cards.
+
+         To compile this driver as a module, choose M here: the module will be
+         called wavelan_cs.  If unsure, say N.
diff --git a/drivers/staging/wavelan/Makefile b/drivers/staging/wavelan/Makefile
new file mode 100644 (file)
index 0000000..1cde17c
--- /dev/null
@@ -0,0 +1,2 @@
+obj-$(CONFIG_WAVELAN)          += wavelan.o
+obj-$(CONFIG_PCMCIA_WAVELAN)   += wavelan_cs.o