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

Commit 77d89b08 authored by wwang's avatar wwang Committed by Greg Kroah-Hartman
Browse files

staging: add rts_pstor for Realtek PCIE cardreader



rts_pstor is used to support Realtek PCI-E card readers,
including rts5209, rts5208, Barossa.

Signed-off-by: default avatarwwang <wei_wang@realsil.com.cn>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 88c8a443
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -87,6 +87,8 @@ source "drivers/staging/rtl8192e/Kconfig"

source "drivers/staging/rtl8712/Kconfig"

source "drivers/staging/rts_pstor/Kconfig"

source "drivers/staging/frontier/Kconfig"

source "drivers/staging/pohmelfs/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@ obj-$(CONFIG_R8187SE) += rtl8187se/
obj-$(CONFIG_RTL8192U)		+= rtl8192u/
obj-$(CONFIG_RTL8192E)		+= rtl8192e/
obj-$(CONFIG_R8712U)		+= rtl8712/
obj-$(CONFIG_RTS_PSTOR)		+= rts_pstor/
obj-$(CONFIG_SPECTRA)		+= spectra/
obj-$(CONFIG_TRANZPORT)		+= frontier/
obj-$(CONFIG_POHMELFS)		+= pohmelfs/
+15 −0
Original line number Diff line number Diff line
config RTS_PSTOR
	tristate "RealTek PCI-E Card Reader support"
	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.
+16 −0
Original line number Diff line number Diff line
EXTRA_CFLAGS	:= -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
+5 −0
Original line number Diff line number Diff line
TODO:
- support more pcie card reader of Realtek family
- use kernel coding style
- checkpatch.pl fixes
Loading