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

Commit f823182b authored by Larry Finger's avatar Larry Finger Committed by Greg Kroah-Hartman
Browse files

staging: r8192ee: Remove staging driver



A new version of this driver has been merged into the regular wireless tree.
The staging version is hereby removed.

Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 76272ab3
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -44,8 +44,6 @@ source "drivers/staging/rtl8712/Kconfig"

source "drivers/staging/rtl8188eu/Kconfig"

source "drivers/staging/rtl8192ee/Kconfig"

source "drivers/staging/rtl8723au/Kconfig"

source "drivers/staging/rts5208/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -14,7 +14,6 @@ obj-$(CONFIG_RTL8192U) += rtl8192u/
obj-$(CONFIG_RTL8192E)		+= rtl8192e/
obj-$(CONFIG_R8712U)		+= rtl8712/
obj-$(CONFIG_R8188EU)		+= rtl8188eu/
obj-$(CONFIG_R8192EE)		+= rtl8192ee/
obj-$(CONFIG_R8723AU)		+= rtl8723au/
obj-$(CONFIG_RTS5208)		+= rts5208/
obj-$(CONFIG_LINE6_USB)		+= line6/

drivers/staging/rtl8192ee/Kconfig

deleted100644 → 0
+0 −14
Original line number Diff line number Diff line
config R8192EE
	tristate "Realtek RTL8192EE Wireless Network Adapter"
	depends on PCI && WLAN && MAC80211
	depends on m
	select WIRELESS_EXT
	select WEXT_PRIV
	select EEPROM_93CX6
	select CRYPTO
	select FW_LOADER
	---help---
	This is the driver for Realtek RTL8192EE 802.11 PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called r8192ee
+0 −40
Original line number Diff line number Diff line

PCI_MAIN_OBJS	:= base.o	\
		cam.o	\
		core.o	\
		debug.o	\
		efuse.o	\
		pci.o	\
		ps.o	\
		rc.o	\
		regd.o	\
		stats.o

PCI_8192EE_HAL_OBJS:=		\
	rtl8192ee/dm.o		\
	rtl8192ee/fw.o		\
	rtl8192ee/hw.o		\
	rtl8192ee/led.o		\
	rtl8192ee/phy.o		\
	rtl8192ee/pwrseq.o	\
	rtl8192ee/pwrseqcmd.o	\
	rtl8192ee/rf.o		\
	rtl8192ee/sw.o		\
	rtl8192ee/table.o	\
	rtl8192ee/trx.o



BT_COEXIST_OBJS:=	btcoexist/halbtc8192e2ant.o\
			btcoexist/halbtc8723b1ant.o\
			btcoexist/halbtc8723b2ant.o\
			btcoexist/halbtc8821a1ant.o\
			btcoexist/halbtc8821a2ant.o\
			btcoexist/halbtcoutsrc.o\
			btcoexist/rtl_btc.o

r8192ee-objs += $(PCI_MAIN_OBJS) $(PCI_8192EE_HAL_OBJS) $(BT_COEXIST_OBJS)

obj-$(CONFIG_R8192EE) += r8192ee.o

ccflags-y += -D__CHECK_ENDIAN__

drivers/staging/rtl8192ee/TODO

deleted100644 → 0
+0 −12
Original line number Diff line number Diff line
TODO:
- convert any remaining unusual variable types
- find codes that can use %pM and %Nph formatting
- checkpatch.pl fixes - most of the remaining ones are lines too long. Many
  of them will require refactoring
- merge Realtek's bugfixes and new features into the driver
- Convert the versions of rtlwifi and btcoexist in drivers/net/wireless/rtlwifi/...
  to work with the RTL8192EE
- move this driver to drivers/net/wireless/rtlwifi

Please send any patches to Greg Kroah-Hartman <gregkh@linux.com>,
and Larry Finger <Larry.Finger@lwfinger.net>.
Loading