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

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

Staging: remove rts_pstor driver



Support for this hardware is now included in a "real" driver in the
kernel, so it is safe to remove the staging driver now.

Cc: wwang <wei_wang@realsil.com.cn>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 94b12302
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -52,8 +52,6 @@ source "drivers/staging/rtl8192e/Kconfig"

source "drivers/staging/rtl8712/Kconfig"

source "drivers/staging/rts_pstor/Kconfig"

source "drivers/staging/rts5139/Kconfig"

source "drivers/staging/frontier/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -19,7 +19,6 @@ obj-$(CONFIG_R8187SE) += rtl8187se/
obj-$(CONFIG_RTL8192U)		+= rtl8192u/
obj-$(CONFIG_RTL8192E)		+= rtl8192e/
obj-$(CONFIG_R8712U)		+= rtl8712/
obj-$(CONFIG_RTS_PSTOR)		+= rts_pstor/
obj-$(CONFIG_RTS5139)		+= rts5139/
obj-$(CONFIG_TRANZPORT)		+= frontier/
obj-$(CONFIG_IDE_PHISON)	+= phison/

drivers/staging/rts_pstor/Kconfig

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
config RTS_PSTOR
	tristate "RealTek PCI-E Card Reader support"
	depends on PCI && SCSI
	help
	  Say Y here to include driver code to support the Realtek
	  PCI-E card readers.

	  If this driver is compiled as a module, it will be named rts_pstor.

config RTS_PSTOR_DEBUG
	bool "Realtek PCI-E Card Reader verbose debug"
	depends on RTS_PSTOR
	help
	  Say Y here in order to have the rts_pstor code generate
	  verbose debugging messages.
+0 −16
Original line number Diff line number Diff line
ccflags := -Idrivers/scsi

obj-$(CONFIG_RTS_PSTOR)	:= rts_pstor.o

rts_pstor-y :=				\
		rtsx.o			\
		rtsx_chip.o		\
		rtsx_transport.o	\
		rtsx_scsi.o		\
		rtsx_card.o		\
		general.o		\
		sd.o			\
		xd.o			\
		ms.o			\
		spi.o

drivers/staging/rts_pstor/TODO

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
TODO:
- support more pcie card reader of Realtek family
- use kernel coding style
- checkpatch.pl fixes
- stop having thousands of lines of code duplicated with staging/rts5139
- This driver contains an entire SD/MMC stack -- it should use the stack in
  drivers/mmc instead, as a host driver e.g. drivers/mmc/host/realtek-pci.c;
  see drivers/mmc/host/via-sdmmc.c as an example.
- This driver presents cards as SCSI devices, but they should be MMC devices.
Loading