diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-10-28 17:16:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-10-28 17:16:11 -0400 |
commit | 46b51ea2099fa2082342e52b8284aa828429b80b (patch) | |
tree | 0a0d7bfe1aff036c86a2e7beacbd91398008bfb6 /arch/arm/mach-msm/include | |
parent | 1fdb24e969110fafea36d3b393bea438f702c87f (diff) | |
parent | a6029e1f75bb484c1f5bc68b6a8572e4024795bc (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc: (83 commits)
mmc: fix compile error when CONFIG_BLOCK is not enabled
mmc: core: Cleanup eMMC4.5 conditionals
mmc: omap_hsmmc: if multiblock reads are broken, disable them
mmc: core: add workaround for controllers with broken multiblock reads
mmc: core: Prevent too long response times for suspend
mmc: recognise SDIO cards with SDIO_CCCR_REV 3.00
mmc: sd: Handle SD3.0 cards not supporting UHS-I bus speed mode
mmc: core: support HPI send command
mmc: core: Add cache control for eMMC4.5 device
mmc: core: Modify the timeout value for writing power class
mmc: core: new discard feature support at eMMC v4.5
mmc: core: mmc sanitize feature support for v4.5
mmc: dw_mmc: modify DATA register offset
mmc: sdhci-pci: add flag for devices that can support runtime PM
mmc: omap_hsmmc: ensure pbias configuration is always done
mmc: core: Add Power Off Notify Feature eMMC 4.5
mmc: sdhci-s3c: fix potential NULL dereference
mmc: replace printk with appropriate display macro
mmc: core: Add default timeout value for CMD6
mmc: sdhci-pci: add runtime pm support
...
Diffstat (limited to 'arch/arm/mach-msm/include')
-rw-r--r-- | arch/arm/mach-msm/include/mach/mmc.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/arch/arm/mach-msm/include/mach/mmc.h b/arch/arm/mach-msm/include/mach/mmc.h index 5631b51cec46..ffcd9e3a6a7e 100644 --- a/arch/arm/mach-msm/include/mach/mmc.h +++ b/arch/arm/mach-msm/include/mach/mmc.h | |||
@@ -8,13 +8,6 @@ | |||
8 | #include <linux/mmc/card.h> | 8 | #include <linux/mmc/card.h> |
9 | #include <linux/mmc/sdio_func.h> | 9 | #include <linux/mmc/sdio_func.h> |
10 | 10 | ||
11 | struct embedded_sdio_data { | ||
12 | struct sdio_cis cis; | ||
13 | struct sdio_cccr cccr; | ||
14 | struct sdio_embedded_func *funcs; | ||
15 | int num_funcs; | ||
16 | }; | ||
17 | |||
18 | struct msm_mmc_gpio { | 11 | struct msm_mmc_gpio { |
19 | unsigned no; | 12 | unsigned no; |
20 | const char *name; | 13 | const char *name; |
@@ -29,9 +22,9 @@ struct msm_mmc_platform_data { | |||
29 | unsigned int ocr_mask; /* available voltages */ | 22 | unsigned int ocr_mask; /* available voltages */ |
30 | u32 (*translate_vdd)(struct device *, unsigned int); | 23 | u32 (*translate_vdd)(struct device *, unsigned int); |
31 | unsigned int (*status)(struct device *); | 24 | unsigned int (*status)(struct device *); |
32 | struct embedded_sdio_data *embedded_sdio; | ||
33 | int (*register_status_notify)(void (*callback)(int card_present, void *dev_id), void *dev_id); | 25 | int (*register_status_notify)(void (*callback)(int card_present, void *dev_id), void *dev_id); |
34 | struct msm_mmc_gpio_data *gpio_data; | 26 | struct msm_mmc_gpio_data *gpio_data; |
27 | void (*init_card)(struct mmc_card *card); | ||
35 | }; | 28 | }; |
36 | 29 | ||
37 | #endif | 30 | #endif |