Commit 4b578354 authored by John W. Linville's avatar John W. Linville
Browse files

netwave: move driver to staging



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: default avatarGreg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 0234f84e
Loading
Loading
Loading
Loading
+0 −13
Original line number Diff line number Diff line
@@ -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
+0 −3
Original line number Diff line number Diff line
@@ -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
+2 −0
Original line number Diff line number Diff line
@@ -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
+1 −0
Original line number Diff line number Diff line
@@ -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/
+11 −0
Original line number Diff line number Diff line
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.
Loading