Commit 20952655 authored by Philipp Hortmann's avatar Philipp Hortmann Committed by Greg Kroah-Hartman
Browse files

staging: wlan-ng: Remove broken driver prism2_usb

Driver has a throughput of 200 to 800kByte/s in non encrypted
transmission. All encrypted modes are not working. WLAN without WPA2 is
useless these days. Driver is unused since April 2021 as a bug broke the
function. Find fix for bug in link below. Remove driver because of its
low performance and unusability.

Link: https://lore.kernel.org/linux-staging/5fa18cb8-3c51-4ac6-811e-63ae74f82f17@gmail.com/


Signed-off-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20240326084742.GA16228@matrix-ESPRIMO-P710


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 26a73b4d
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -24,8 +24,6 @@ menuconfig STAGING

if STAGING

source "drivers/staging/wlan-ng/Kconfig"

source "drivers/staging/olpc_dcon/Kconfig"

source "drivers/staging/rtl8192e/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
# Makefile for staging directory

obj-y				+= media/
obj-$(CONFIG_PRISM2_USB)	+= wlan-ng/
obj-$(CONFIG_FB_OLPC_DCON)	+= olpc_dcon/
obj-$(CONFIG_RTL8192E)		+= rtl8192e/
obj-$(CONFIG_RTL8723BS)		+= rtl8723bs/

drivers/staging/wlan-ng/Kconfig

deleted100644 → 0
+0 −13
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
config PRISM2_USB
	tristate "Prism2.5/3 USB driver"
	depends on WLAN && USB && CFG80211
	select WIRELESS_EXT
	select WEXT_PRIV
	select CRC32
	help
	  This is the wlan-ng prism 2.5/3 USB driver for a wide range of
	  old USB wireless devices.

	  To compile this driver as a module, choose M here: the module
	  will be called prism2_usb.

drivers/staging/wlan-ng/Makefile

deleted100644 → 0
+0 −8
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
obj-$(CONFIG_PRISM2_USB) += prism2_usb.o

prism2_usb-y := prism2usb.o \
		p80211conv.o \
		p80211req.o \
		p80211wep.o \
		p80211netdev.o

drivers/staging/wlan-ng/README

deleted100644 → 0
+0 −8
Original line number Diff line number Diff line
TODO:
	- checkpatch.pl cleanups
	- sparse warnings
	- move to use the in-kernel wireless stack

Please send any patches or complaints about this driver to Greg
Kroah-Hartman <greg@kroah.com> and don't bother the upstream wireless
kernel developers about it, they want nothing to do with it.
Loading