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

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

staging: remove rts5139 driver code



Roger writes:
	Since all patches have been applied and the device is now
	supported by the new driver, would you remove the former staging
	one at drivers/staging/rts5139?

Cc: Roger Tseng <rogerable@realtek.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b44ab1b0
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -54,8 +54,6 @@ source "drivers/staging/rtl8723au/Kconfig"

source "drivers/staging/rtl8821ae/Kconfig"

source "drivers/staging/rts5139/Kconfig"

source "drivers/staging/rts5208/Kconfig"

source "drivers/staging/frontier/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -19,7 +19,6 @@ obj-$(CONFIG_R8188EU) += rtl8188eu/
obj-$(CONFIG_R8192EE)		+= rtl8192ee/
obj-$(CONFIG_R8723AU)		+= rtl8723au/
obj-$(CONFIG_R8821AE)		+= rtl8821ae/
obj-$(CONFIG_RTS5139)		+= rts5139/
obj-$(CONFIG_RTS5208)		+= rts5208/
obj-$(CONFIG_TRANZPORT)		+= frontier/
obj-$(CONFIG_IDE_PHISON)	+= phison/

drivers/staging/rts5139/Kconfig

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
config RTS5139
	tristate "Realtek RTS5139 USB card reader support"
	depends on USB && SCSI
	help
	  Say Y here to include driver code to support the Realtek
	  RTS5139 USB card readers.

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

config RTS5139_DEBUG
	bool "Realtek RTS5139 Card Reader verbose debug"
	depends on RTS5139
	help
	  Say Y here in order to have the rts5139 code generate
	  verbose debugging messages.

drivers/staging/rts5139/Makefile

deleted100644 → 0
+0 −43
Original line number Diff line number Diff line
# Driver for Realtek RTS51xx USB card reader
#
# Copyright(c) 2009 Realtek Semiconductor Corp. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2, or (at your option) any
# later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, see <http://www.gnu.org/licenses/>.
#
# Author:
#   wwang (wei_wang@realsil.com.cn)
#   No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
# Maintainer:
#   Edwin Rong (edwin_rong@realsil.com.cn)
#   No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
#
# Makefile for the RTS51xx USB Card Reader drivers.
#

obj-$(CONFIG_RTS5139) := rts5139.o

ccflags-y := -Idrivers/scsi

rts5139-y :=				\
		rts51x_transport.o 	\
		rts51x_scsi.o		\
		rts51x_fop.o		\
		rts51x.o		\
		rts51x_chip.o		\
		rts51x_card.o		\
		xd.o			\
		sd.o			\
		ms.o			\
		sd_cprm.o		\
		ms_mg.o

drivers/staging/rts5139/TODO

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
TODO:
- support more USB card reader of Realtek family
- use kernel coding style
- checkpatch.pl fixes
- stop having thousands of lines of code duplicated with staging/rts_pstor
- 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-usb.c;
  see drivers/mmc/host/ushc.c as an example.
- This driver presents cards as SCSI devices, but they should be MMC devices.
Loading