Skip to content

Commit

Permalink
memstick: add support for JMicron jmb38x MemoryStick host controller
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Dubov <oakad@yahoo.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Alex Dubov authored and Linus Torvalds committed Mar 11, 2008
1 parent 5936725 commit 60fdd93
Show file tree
Hide file tree
Showing 5 changed files with 960 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/memstick/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ menuconfig MEMSTICK
Sony MemoryStick is a proprietary storage/extension card protocol.

If you want MemoryStick support, you should say Y here and also
to the specific driver for your MMC interface.
to the specific driver for your MemoryStick interface.

if MEMSTICK

Expand Down
10 changes: 10 additions & 0 deletions drivers/memstick/host/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,13 @@ config MEMSTICK_TIFM_MS
To compile this driver as a module, choose M here: the
module will be called tifm_ms.

config MEMSTICK_JMICRON_38X
tristate "JMicron JMB38X MemoryStick interface support (EXPERIMENTAL)"
depends on EXPERIMENTAL && PCI

help
Say Y here if you want to be able to access MemoryStick cards with
the JMicron(R) JMB38X MemoryStick card reader.

To compile this driver as a module, choose M here: the
module will be called jmb38x_ms.
6 changes: 3 additions & 3 deletions drivers/memstick/host/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#

ifeq ($(CONFIG_MEMSTICK_DEBUG),y)
EXTRA_CFLAGS += -DDEBUG
EXTRA_CFLAGS += -DDEBUG
endif

obj-$(CONFIG_MEMSTICK_TIFM_MS) += tifm_ms.o

obj-$(CONFIG_MEMSTICK_TIFM_MS) += tifm_ms.o
obj-$(CONFIG_MEMSTICK_JMICRON_38X) += jmb38x_ms.o
Loading

0 comments on commit 60fdd93

Please sign in to comment.