diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-14 16:46:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-14 16:46:57 -0400 |
commit | 2625b10d8c37656cf410a464ed95942b3abbd1f6 (patch) | |
tree | f02fc44aaed07dceed2566b3fdf4dc64b786cb89 /drivers/misc/cb710/Kconfig | |
parent | 489f7ab6c18cdd64a2d444e056d60a0e722f4ad7 (diff) | |
parent | 7f72134c32eb64c77d1fb35123ba8bf815bf797c (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc: (25 commits)
atmel-mci: add MCI2 register definitions
atmel-mci: Integrate AT91 specific definition in header file
tmio_mmc: allow compilation for ASIC3
mmc_block: do not DMA to stack
sdhci: Print ADMA status and pointer on debug
tmio_mmc: fix clock setup
tmio_mmc: map SD control registers after enabling the MFD cell
tmio_mmc: correct probe return value for num_resources != 3
tmio_mmc: don't use set_irq_type
tmio_mmc: add bus_shift support
MFD,mmc: tmio_mmc: make HCLK configurable
mmc_spi: don't use EINVAL for possible transmission errors
cb710: more cleanup for the DEBUG case.
sdhci: platform driver for SDHCI
mxcmmc: remove frequency workaround
cb710: handle DEBUG define in Makefile
cb710: add missing parenthesis
cb710: fix printk format string
mmc: Driver for CB710/720 memory card reader (MMC part)
pxamci: add regulator support.
...
Diffstat (limited to 'drivers/misc/cb710/Kconfig')
-rw-r--r-- | drivers/misc/cb710/Kconfig | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/drivers/misc/cb710/Kconfig b/drivers/misc/cb710/Kconfig new file mode 100644 index 000000000000..22429b8b1068 --- /dev/null +++ b/drivers/misc/cb710/Kconfig | |||
@@ -0,0 +1,25 @@ | |||
1 | config CB710_CORE | ||
2 | tristate "ENE CB710/720 Flash memory card reader support" | ||
3 | depends on PCI | ||
4 | help | ||
5 | This option enables support for PCI ENE CB710/720 Flash memory card | ||
6 | reader found in some laptops (ie. some versions of HP Compaq nx9500). | ||
7 | |||
8 | You will also have to select some flash card format drivers (MMC/SD, | ||
9 | MemoryStick). | ||
10 | |||
11 | This driver can also be built as a module. If so, the module | ||
12 | will be called cb710. | ||
13 | |||
14 | config CB710_DEBUG | ||
15 | bool "Enable driver debugging" | ||
16 | depends on CB710_CORE != n | ||
17 | default n | ||
18 | help | ||
19 | This is an option for use by developers; most people should | ||
20 | say N here. This adds a lot of debugging output to dmesg. | ||
21 | |||
22 | config CB710_DEBUG_ASSUMPTIONS | ||
23 | bool | ||
24 | depends on CB710_CORE != n | ||
25 | default y | ||