]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
netwave: move driver to staging
authorJohn W. Linville <linville@tuxdriver.com>
Wed, 28 Oct 2009 20:16:38 +0000 (16:16 -0400)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 30 Oct 2009 20:50:34 +0000 (16:50 -0400)
Move the netwave 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>
drivers/net/wireless/Kconfig
drivers/net/wireless/Makefile
drivers/staging/Kconfig
drivers/staging/Makefile
drivers/staging/netwave/Kconfig [new file with mode: 0644]
drivers/staging/netwave/Makefile [new file with mode: 0644]
drivers/staging/netwave/netwave_cs.c [moved from drivers/net/wireless/netwave_cs.c with 100% similarity]

index f94188f05a02bc20dd1611a4420af5c6d4414834..bf0eb4e774b463b3e5cc6ccdc6aa1e173579a98c 100644 (file)
@@ -25,19 +25,6 @@ menuconfig WLAN_PRE80211
          This option does not affect the kernel build, it only
          lets you choose drivers.
 
-config PCMCIA_NETWAVE
-       tristate "Xircom Netwave AirSurfer Pcmcia wireless support"
-       depends on PCMCIA && WLAN_PRE80211
-       select WIRELESS_EXT
-       select WEXT_PRIV
-       help
-         Say Y here if you intend to attach this type of PCMCIA (PC-card)
-         wireless Ethernet networking card to your computer.
-
-         To compile this driver as a module, choose M here: the module will be
-         called netwave_cs.  If unsure, say N.
-
-
 menuconfig WLAN_80211
        bool "Wireless LAN (IEEE 802.11)"
        depends on NETDEVICES
index f4a7c8ae27ea1e79e2728d935c28be7321fcf58d..5d4ce4d2b32bd9a71a63a1b6c25606f647b3d0bc 100644 (file)
@@ -5,9 +5,6 @@
 obj-$(CONFIG_IPW2100) += ipw2x00/
 obj-$(CONFIG_IPW2200) += ipw2x00/
 
-# Obsolete cards
-obj-$(CONFIG_PCMCIA_NETWAVE)   += netwave_cs.o
-
 obj-$(CONFIG_HERMES)           += orinoco/
 
 obj-$(CONFIG_AIRO)             += airo.o
index c1082f20534ccc8078c299c68e8f6484ab972529..4e3873bfd010dd91ebe37d8253154d3f1c7f89e3 100644 (file)
@@ -137,5 +137,7 @@ source "drivers/staging/arlan/Kconfig"
 
 source "drivers/staging/wavelan/Kconfig"
 
+source "drivers/staging/netwave/Kconfig"
+
 endif # !STAGING_EXCLUDE_BUILD
 endif # STAGING
index 7bccdd3e7fabaf35d9c3a9c938700435f62ea5c0..fb1d7851b5635a21e33ae43d19d75abbeb5d948c 100644 (file)
@@ -51,3 +51,4 @@ obj-$(CONFIG_STRIP)           += strip/
 obj-$(CONFIG_ARLAN)            += arlan/
 obj-$(CONFIG_WAVELAN)          += wavelan/
 obj-$(CONFIG_PCMCIA_WAVELAN)   += wavelan/
+obj-$(CONFIG_PCMCIA_NETWAVE)   += netwave/
diff --git a/drivers/staging/netwave/Kconfig b/drivers/staging/netwave/Kconfig
new file mode 100644 (file)
index 0000000..c0c996c
--- /dev/null
@@ -0,0 +1,11 @@
+config PCMCIA_NETWAVE
+       tristate "Xircom Netwave AirSurfer Pcmcia wireless support"
+       depends on PCMCIA
+       select WIRELESS_EXT
+       select WEXT_PRIV
+       help
+         Say Y here if you intend to attach this type of PCMCIA (PC-card)
+         wireless Ethernet networking card to your computer.
+
+         To compile this driver as a module, choose M here: the module will be
+         called netwave_cs.  If unsure, say N.
diff --git a/drivers/staging/netwave/Makefile b/drivers/staging/netwave/Makefile
new file mode 100644 (file)
index 0000000..2ab89de
--- /dev/null
@@ -0,0 +1 @@
+obj-$(CONFIG_PCMCIA_NETWAVE)   += netwave_cs.o