Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 760ffce8 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Staging: delete rtl8192su driver



Now that we have a much better driver for this device (rtl8712), delete
this driver as it is no longer needed.

Cc: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 1407a9e1
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -73,8 +73,6 @@ source "drivers/staging/panel/Kconfig"

source "drivers/staging/rtl8187se/Kconfig"

source "drivers/staging/rtl8192su/Kconfig"

source "drivers/staging/rtl8192u/Kconfig"

source "drivers/staging/rtl8192e/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -20,7 +20,6 @@ obj-$(CONFIG_COMEDI) += comedi/
obj-$(CONFIG_ASUS_OLED)		+= asus_oled/
obj-$(CONFIG_PANEL)		+= panel/
obj-$(CONFIG_R8187SE)		+= rtl8187se/
obj-$(CONFIG_RTL8192SU)		+= rtl8192su/
obj-$(CONFIG_RTL8192U)		+= rtl8192u/
obj-$(CONFIG_RTL8192E)		+= rtl8192e/
obj-$(CONFIG_R8712U)		+= rtl8712/

drivers/staging/rtl8192su/Kconfig

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
config RTL8192SU
	tristate "RealTek RTL8192SU Wireless LAN NIC driver"
	depends on PCI && WLAN && USB
	select WIRELESS_EXT
	select WEXT_PRIV
	select EEPROM_93CX6
	select CRYPTO
	default N
	---help---
+0 −39
Original line number Diff line number Diff line
NIC_SELECT = RTL8192SU

EXTRA_CFLAGS += -std=gnu89
EXTRA_CFLAGS += -O2

EXTRA_CFLAGS += -DJACKSON_NEW_RX
EXTRA_CFLAGS += -DTHOMAS_BEACON

#EXTRA_CFLAGS += -DMUTIPLE_BULK_OUT

r8192s_usb-objs :=		\
	r8192U_wx.o		\
	r8192S_phy.o		\
	r8192S_rtl6052.o	\
	r8192S_rtl8225.o	\
	r819xU_cmdpkt.o		\
	r8192U_dm.o		\
	r8192SU_HWImg.o		\
	r8192S_firmware.o	\
	r8192S_Efuse.o		\
	r8192U_core.o		\
	r8192U_pm.o		\
	r8192SU_led.o		\
	ieee80211/ieee80211_crypt.o		\
	ieee80211/ieee80211_crypt_tkip.o	\
	ieee80211/ieee80211_crypt_ccmp.o	\
	ieee80211/ieee80211_crypt_wep.o		\
	ieee80211/ieee80211_rx.o	\
	ieee80211/ieee80211_softmac.o	\
	ieee80211/ieee80211_tx.o	\
	ieee80211/ieee80211_wx.o	\
	ieee80211/ieee80211_module.o	\
	ieee80211/ieee80211_softmac_wx.o\
	ieee80211/rtl819x_HTProc.o	\
	ieee80211/rtl819x_TSProc.o	\
	ieee80211/rtl819x_BAProc.o	\
	ieee80211/dot11d.o

obj-$(CONFIG_RTL8192SU) += r8192s_usb.o

drivers/staging/rtl8192su/TODO

deleted100644 → 0
+0 −21
Original line number Diff line number Diff line
TODO:
- merge realteks bugfixes and new features into the driver:
  - an updated version of this driver can be found here:
    http://www.getnet.eu/products_GN-621U.html
  - note:
    realtek has stripped alomost all comments from the source,
    so please leave all comments that may help in development in the code.
- prepare private ieee80211 stack for merge with rtl8187se's version:
  - remove rtl8192su's specific dead code
  - cleanup ieee80211.h
  - move rtl8192su's specific code out from ieee80211.h
  - abstract rtl819su's specific code
- switch to use shared "librtl" instead of private ieee80211 stack
- switch to use LIB80211
- switch to use MAC80211
- use kernel coding style
- checkpatch.pl fixes
- sparse fixes
- integrate with drivers/net/wireless/rtl818x

Please send any patches to Greg Kroah-Hartman <greg@kroah.com>.
Loading