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

Commit 5f5bac82 authored by Michał Mirosław's avatar Michał Mirosław Committed by Pierre Ossman
Browse files

mmc: Driver for CB710/720 memory card reader (MMC part)



The code is divided in two parts. There is a virtual 'bus' driver
that handles PCI device and registers three new devices one per card
reader type. The other driver handles SD/MMC part of the reader.

Signed-off-by: default avatarMichał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: default avatarPierre Ossman <pierre@ossman.eu>
parent 8385f9cb
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -2105,6 +2105,15 @@ W: http://sourceforge.net/projects/lpfcxxxx
S:	Supported
F:	drivers/scsi/lpfc/

ENE CB710 FLASH CARD READER DRIVER
P:	Michał Mirosław
M:	mirq-linux@rere.qmqm.pl
L:	linux-kernel@vger.kernel.org
S:	Maintained
F:	drivers/misc/cb710/
F:	drivers/mmc/host/cb710-mmc.*
F:	include/linux/cb710.h

EPSON 1355 FRAMEBUFFER DRIVER
P:	Christopher Hoover
M:	ch@murgatroid.com
+1 −0
Original line number Diff line number Diff line
@@ -235,5 +235,6 @@ config ISL29003

source "drivers/misc/c2port/Kconfig"
source "drivers/misc/eeprom/Kconfig"
source "drivers/misc/cb710/Kconfig"

endif # MISC_DEVICES
+1 −0
Original line number Diff line number Diff line
@@ -21,3 +21,4 @@ obj-$(CONFIG_HP_ILO) += hpilo.o
obj-$(CONFIG_ISL29003)		+= isl29003.o
obj-$(CONFIG_C2PORT)		+= c2port/
obj-y				+= eeprom/
obj-y				+= cb710/
+21 −0
Original line number Diff line number Diff line
config CB710_CORE
	tristate "ENE CB710/720 Flash memory card reader support"
	depends on PCI
	help
	  This option enables support for PCI ENE CB710/720 Flash memory card
	  reader found in some laptops (ie. some versions of HP Compaq nx9500).

	  You will also have to select some flash card format drivers (MMC/SD,
	  MemoryStick).

	  This driver can also be built as a module. If so, the module
	  will be called cb710.

config CB710_DEBUG
	bool "Enable driver debugging"
	depends on CB710_CORE != n
	default n
	help
	  This is an option for use by developers; most people should
	  say N here.  This adds a lot of debugging output to dmesg.
+4 −0
Original line number Diff line number Diff line
obj-$(CONFIG_CB710_CORE)	+= cb710.o

cb710-y				:= core.o sgbuf2.o
cb710-$(CONFIG_CB710_DEBUG)	+= debug.o
Loading