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

Commit 92634125 authored by Maxim Levitsky's avatar Maxim Levitsky Committed by Linus Torvalds
Browse files

memstick: add driver for Ricoh R5C592 card reader



Signed-off-by: default avatarMaxim Levitsky <maximlevitsky@gmail.com>
Acked-by: default avatarAlex Dubov <oakad@yahoo.com>
Cc: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 40471856
Loading
Loading
Loading
Loading
+5 −0
Original line number Original line Diff line number Diff line
@@ -5291,6 +5291,11 @@ S: Maintained
F:	drivers/mtd/nand/r852.c
F:	drivers/mtd/nand/r852.c
F:	drivers/mtd/nand/r852.h
F:	drivers/mtd/nand/r852.h


RICOH R5C592 MEMORYSTICK DRIVER
M:	Maxim Levitsky <maximlevitsky@gmail.com>
S:	Maintained
F:	drivers/memstick/host/r592.*

RISCOM8 DRIVER
RISCOM8 DRIVER
S:	Orphan
S:	Orphan
F:	Documentation/serial/riscom8.txt
F:	Documentation/serial/riscom8.txt
+12 −0
Original line number Original line Diff line number Diff line
@@ -30,3 +30,15 @@ config MEMSTICK_JMICRON_38X


          To compile this driver as a module, choose M here: the
          To compile this driver as a module, choose M here: the
	  module will be called jmb38x_ms.
	  module will be called jmb38x_ms.

config MEMSTICK_R592
	tristate "Ricoh R5C592 MemoryStick interface support (EXPERIMENTAL)"
	depends on EXPERIMENTAL && PCI

	help
	  Say Y here if you want to be able to access MemoryStick cards with
	  the Ricoh R5C592 MemoryStick card reader (which is part of 5 in one
		multifunction reader)

	  To compile this driver as a module, choose M here: the module will
	  be called r592.
+1 −0
Original line number Original line Diff line number Diff line
@@ -4,3 +4,4 @@


obj-$(CONFIG_MEMSTICK_TIFM_MS)		+= tifm_ms.o
obj-$(CONFIG_MEMSTICK_TIFM_MS)		+= tifm_ms.o
obj-$(CONFIG_MEMSTICK_JMICRON_38X)	+= jmb38x_ms.o
obj-$(CONFIG_MEMSTICK_JMICRON_38X)	+= jmb38x_ms.o
obj-$(CONFIG_MEMSTICK_R592)		+= r592.o
+908 −0

File added.

Preview size limit exceeded, changes collapsed.

+175 −0

File added.

Preview size limit exceeded, changes collapsed.