Skip to content

Commit

Permalink
mmc: Driver for CB710/720 memory card reader (MMC part)
Browse files Browse the repository at this point in the history
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: Michał Mirosław <[email protected]>
Signed-off-by: Pierre Ossman <[email protected]>
  • Loading branch information
osctobe authored and ossman committed Jun 13, 2009
1 parent 8385f9c commit 5f5bac8
Show file tree
Hide file tree
Showing 14 changed files with 1,823 additions and 0 deletions.
9 changes: 9 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -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: [email protected]
L: [email protected]
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: [email protected]
Expand Down
1 change: 1 addition & 0 deletions drivers/misc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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 change: 1 addition & 0 deletions drivers/misc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 21 additions & 0 deletions drivers/misc/cb710/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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 changes: 4 additions & 0 deletions drivers/misc/cb710/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
obj-$(CONFIG_CB710_CORE) += cb710.o

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

0 comments on commit 5f5bac8

Please sign in to comment.