diff options
| author | Pavel Machek <pavel@ucw.cz> | 2009-12-08 14:11:36 -0500 |
|---|---|---|
| committer | Daniel Walker <dwalker@codeaurora.org> | 2009-12-10 13:14:34 -0500 |
| commit | 3989d17847071fa94c93299805a9cca27cf65d26 (patch) | |
| tree | b5c660cd21ec416a5089e5c2d269443e2e0d5206 | |
| parent | 4e00dc762d68248c23c5fe1dfb4d06fbe75554b0 (diff) | |
HTC Dream: mmc compilation fixes
Add missing include for msm_sdcc compilation, and remove pwrsink
support that is not mainline, yet.
Signed-off-by: Pavel Machek <pavel@ucw.cz>
[dwalker@codeaurora.org : fixed indent in mmc.h]
Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
| -rw-r--r-- | arch/arm/mach-msm/include/mach/mmc.h | 26 | ||||
| -rw-r--r-- | drivers/mmc/host/msm_sdcc.c | 5 |
2 files changed, 27 insertions, 4 deletions
diff --git a/arch/arm/mach-msm/include/mach/mmc.h b/arch/arm/mach-msm/include/mach/mmc.h new file mode 100644 index 000000000000..0ecf25426284 --- /dev/null +++ b/arch/arm/mach-msm/include/mach/mmc.h | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/include/asm/mach/mmc.h | ||
| 3 | */ | ||
| 4 | #ifndef ASMARM_MACH_MMC_H | ||
| 5 | #define ASMARM_MACH_MMC_H | ||
| 6 | |||
| 7 | #include <linux/mmc/host.h> | ||
| 8 | #include <linux/mmc/card.h> | ||
| 9 | #include <linux/mmc/sdio_func.h> | ||
| 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 mmc_platform_data { | ||
| 19 | unsigned int ocr_mask; /* available voltages */ | ||
| 20 | u32 (*translate_vdd)(struct device *, unsigned int); | ||
| 21 | unsigned int (*status)(struct device *); | ||
| 22 | struct embedded_sdio_data *embedded_sdio; | ||
| 23 | int (*register_status_notify)(void (*callback)(int card_present, void *dev_id), void *dev_id); | ||
| 24 | }; | ||
| 25 | |||
| 26 | #endif | ||
diff --git a/drivers/mmc/host/msm_sdcc.c b/drivers/mmc/host/msm_sdcc.c index dba4600bcdb4..b31946e0b4ca 100644 --- a/drivers/mmc/host/msm_sdcc.c +++ b/drivers/mmc/host/msm_sdcc.c | |||
| @@ -38,10 +38,9 @@ | |||
| 38 | #include <asm/div64.h> | 38 | #include <asm/div64.h> |
| 39 | #include <asm/sizes.h> | 39 | #include <asm/sizes.h> |
| 40 | 40 | ||
| 41 | #include <asm/mach/mmc.h> | 41 | #include <mach/mmc.h> |
| 42 | #include <mach/msm_iomap.h> | 42 | #include <mach/msm_iomap.h> |
| 43 | #include <mach/dma.h> | 43 | #include <mach/dma.h> |
| 44 | #include <mach/htc_pwrsink.h> | ||
| 45 | 44 | ||
| 46 | #include "msm_sdcc.h" | 45 | #include "msm_sdcc.h" |
| 47 | 46 | ||
| @@ -775,13 +774,11 @@ msmsdcc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | |||
| 775 | 774 | ||
| 776 | switch (ios->power_mode) { | 775 | switch (ios->power_mode) { |
| 777 | case MMC_POWER_OFF: | 776 | case MMC_POWER_OFF: |
| 778 | htc_pwrsink_set(PWRSINK_SDCARD, 0); | ||
| 779 | break; | 777 | break; |
| 780 | case MMC_POWER_UP: | 778 | case MMC_POWER_UP: |
| 781 | pwr |= MCI_PWR_UP; | 779 | pwr |= MCI_PWR_UP; |
| 782 | break; | 780 | break; |
| 783 | case MMC_POWER_ON: | 781 | case MMC_POWER_ON: |
| 784 | htc_pwrsink_set(PWRSINK_SDCARD, 100); | ||
| 785 | pwr |= MCI_PWR_ON; | 782 | pwr |= MCI_PWR_ON; |
| 786 | break; | 783 | break; |
| 787 | } | 784 | } |
