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

Commit 76272ab3 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

staging: rtl8821ae: remove driver



There is now a "real" driver in the wireless tree for this hardware
device, so remove the staging driver as it is no longer needed.

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

source "drivers/staging/rtl8723au/Kconfig"

source "drivers/staging/rtl8821ae/Kconfig"

source "drivers/staging/rts5208/Kconfig"

source "drivers/staging/line6/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -16,7 +16,6 @@ obj-$(CONFIG_R8712U) += rtl8712/
obj-$(CONFIG_R8188EU)		+= rtl8188eu/
obj-$(CONFIG_R8192EE)		+= rtl8192ee/
obj-$(CONFIG_R8723AU)		+= rtl8723au/
obj-$(CONFIG_R8821AE)		+= rtl8821ae/
obj-$(CONFIG_RTS5208)		+= rts5208/
obj-$(CONFIG_LINE6_USB)		+= line6/
obj-$(CONFIG_NETLOGIC_XLR_NET)	+= netlogic/

drivers/staging/rtl8821ae/Kconfig

deleted100644 → 0
+0 −10
Original line number Diff line number Diff line
config R8821AE
	tristate "RealTek RTL8821AE Wireless LAN NIC driver"
	depends on PCI && WLAN && MAC80211
	depends on m
	select WIRELESS_EXT
	select WEXT_PRIV
	select EEPROM_93CX6
	select CRYPTO
	---help---
	  If built as a module, it will be called r8821ae.ko.
+0 −35
Original line number Diff line number Diff line
PCI_MAIN_OBJS	:= base.o	\
		rc.o	\
		debug.o	\
		regd.o	\
		efuse.o	\
		cam.o	\
		ps.o	\
		core.o	\
		stats.o	\
		pci.o	\

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

PCI_8821AE_HAL_OBJS:=	\
	rtl8821ae/hw.o		\
	rtl8821ae/table.o		\
	rtl8821ae/sw.o		\
	rtl8821ae/trx.o		\
	rtl8821ae/led.o		\
	rtl8821ae/fw.o		\
	rtl8821ae/phy.o		\
	rtl8821ae/rf.o		\
	rtl8821ae/dm.o		\
	rtl8821ae/pwrseq.o	\
	rtl8821ae/pwrseqcmd.o	\
	rtl8821ae/hal_btc.o	\
	rtl8821ae/hal_bt_coexist.o	\

rtl8821ae-objs += $(BT_COEXIST_OBJS) $(PCI_MAIN_OBJS) $(PCI_8821AE_HAL_OBJS)

obj-$(CONFIG_R8821AE) += rtl8821ae.o

drivers/staging/rtl8821ae/TODO

deleted100644 → 0
+0 −10
Original line number Diff line number Diff line
Realtek 8821AE PCI wifi driver TODO:
  - remove built-in btcoexist module when the "real" one gets upstream
  - remove built-in rtlwifi code by porting driver to use the "real" one
    in the drivers/net/ directory.
  - fix up coding style issues

Please send any patches for this driver to:
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
and the <devel@driverdev.osuosl.org> mailing list.
Loading