-
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.
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: (46 commits) mmc-omap: Clean up omap set_ios and make MMC_POWER_ON work mmc-omap: Fix omap to use MMC_POWER_ON mmc-omap: add missing '\n' mmc: make tifm_sd_set_dma_data() static mmc: remove old card states mmc: support unsafe resume of cards mmc: separate out reading EXT_CSD mmc: break apart switch function MMC: Fix handling of low-voltage cards MMC: Consolidate voltage definitions mmc: add bus handler wbsd: check for data opcode earlier mmc: Separate out protocol ops mmc: Move core functions to subdir mmc: deprecate mmc bus topology mmc: remove card upon suspend mmc: allow suspended block driver to be removed mmc: Flush pending detects on host removal mmc: Move host and card drivers to subdirs mmc: Move queue functions to mmc_block ...
- Loading branch information
Showing
50 changed files
with
4,858 additions
and
3,941 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,17 @@ | ||
# | ||
# MMC/SD card drivers | ||
# | ||
|
||
comment "MMC/SD Card Drivers" | ||
depends MMC | ||
|
||
config MMC_BLOCK | ||
tristate "MMC block device driver" | ||
depends on MMC && BLOCK | ||
default y | ||
help | ||
Say Y here to enable the MMC block device driver support. | ||
This provides a block device driver, which you can use to | ||
mount the filesystem. Almost everyone wishing MMC support | ||
should say Y or M here. | ||
|
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,11 @@ | ||
# | ||
# Makefile for MMC/SD card drivers | ||
# | ||
|
||
ifeq ($(CONFIG_MMC_DEBUG),y) | ||
EXTRA_CFLAGS += -DDEBUG | ||
endif | ||
|
||
obj-$(CONFIG_MMC_BLOCK) += mmc_block.o | ||
mmc_block-objs := block.o queue.o | ||
|
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
File renamed without changes.
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,17 @@ | ||
# | ||
# MMC core configuration | ||
# | ||
|
||
config MMC_UNSAFE_RESUME | ||
bool "Allow unsafe resume (DANGEROUS)" | ||
depends on MMC != n | ||
help | ||
If you say Y here, the MMC layer will assume that all cards | ||
stayed in their respective slots during the suspend. The | ||
normal behaviour is to remove them at suspend and | ||
redetecting them at resume. Breaking this assumption will | ||
in most cases result in data corruption. | ||
|
||
This option is usually just for embedded systems which use | ||
a MMC/SD card for rootfs. Most people should say N here. | ||
|
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,11 @@ | ||
# | ||
# Makefile for the kernel mmc core. | ||
# | ||
|
||
ifeq ($(CONFIG_MMC_DEBUG),y) | ||
EXTRA_CFLAGS += -DDEBUG | ||
endif | ||
|
||
obj-$(CONFIG_MMC) += mmc_core.o | ||
mmc_core-y := core.o sysfs.o mmc.o mmc_ops.o sd.o sd_ops.o | ||
|
Oops, something went wrong.