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

Commit baf8532a authored by Alex Dubov's avatar Alex Dubov Committed by Linus Torvalds
Browse files

memstick: initial commit for Sony MemoryStick support



Sony MemoryStick cards are used in many products manufactured by Sony.
They are available both as storage and as IO expansion cards.  Currently,
only MemoryStick Pro storage cards are supported via TI FlashMedia
MemoryStick interface.

[mboton@gmail.com: biuld fix]
[akpm@linux-foundation.org: build fix]
Signed-off-by: default avatarAlex Dubov <oakad@yahoo.com>
Signed-off-by: default avatarMiguel Boton <mboton@gmail.co>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 941edd03
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -3627,6 +3627,13 @@ L: linux-acpi@vger.kernel.org
W:	http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
S:	Maintained

SONY MEMORYSTICK CARD SUPPORT
P:	Alex Dubov
M:	oakad@yahoo.com
L:	linux-kernel@vger.kernel.org
W:	http://tifmxx.berlios.de/
S:	Maintained

SOUND
P:	Jaroslav Kysela
M:	perex@perex.cz
+2 −0
Original line number Diff line number Diff line
@@ -80,6 +80,8 @@ source "drivers/usb/Kconfig"

source "drivers/mmc/Kconfig"

source "drivers/memstick/Kconfig"

source "drivers/leds/Kconfig"

source "drivers/infiniband/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -78,6 +78,7 @@ obj-y += lguest/
obj-$(CONFIG_CPU_FREQ)		+= cpufreq/
obj-$(CONFIG_CPU_IDLE)		+= cpuidle/
obj-$(CONFIG_MMC)		+= mmc/
obj-$(CONFIG_MEMSTICK)		+= memstick/
obj-$(CONFIG_NEW_LEDS)		+= leds/
obj-$(CONFIG_INFINIBAND)	+= infiniband/
obj-$(CONFIG_SGI_SN)		+= sn/
+26 −0
Original line number Diff line number Diff line
#
# MemoryStick subsystem configuration
#

menuconfig MEMSTICK
	tristate "Sony MemoryStick card support (EXPERIMENTAL)"
	help
	  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.

if MEMSTICK

config MEMSTICK_DEBUG
	bool "MemoryStick debugging"
	help
	  This is an option for use by developers; most people should
	  say N here.  This enables MemoryStick core and driver debugging.


source "drivers/memstick/core/Kconfig"

source "drivers/memstick/host/Kconfig"

endif # MEMSTICK
+11 −0
Original line number Diff line number Diff line
#
# Makefile for the kernel MemoryStick device drivers.
#

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

obj-$(CONFIG_MEMSTICK)		+= core/
obj-$(CONFIG_MEMSTICK)		+= host/
Loading