forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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: Michał Mirosław <[email protected]> Signed-off-by: Pierre Ossman <[email protected]>
- Loading branch information
Showing
14 changed files
with
1,823 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.