diff options
author | Pavel Machek <pavel@ucw.cz> | 2009-12-08 11:11:36 -0800 |
---|---|---|
committer | Daniel Walker <dwalker@codeaurora.org> | 2009-12-10 10:14:34 -0800 |
commit | 3989d17847071fa94c93299805a9cca27cf65d26 (patch) | |
tree | b5c660cd21ec416a5089e5c2d269443e2e0d5206 /arch | |
parent | 4e00dc762d68248c23c5fe1dfb4d06fbe75554b0 (diff) | |
download | op-kernel-dev-3989d17847071fa94c93299805a9cca27cf65d26.zip op-kernel-dev-3989d17847071fa94c93299805a9cca27cf65d26.tar.gz |
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-msm/include/mach/mmc.h | 26 |
1 files changed, 26 insertions, 0 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 0000000..0ecf254 --- /dev/null +++ b/arch/arm/mach-msm/include/mach/mmc.h @@ -0,0 +1,26 @@ +/* + * arch/arm/include/asm/mach/mmc.h + */ +#ifndef ASMARM_MACH_MMC_H +#define ASMARM_MACH_MMC_H + +#include <linux/mmc/host.h> +#include <linux/mmc/card.h> +#include <linux/mmc/sdio_func.h> + +struct embedded_sdio_data { + struct sdio_cis cis; + struct sdio_cccr cccr; + struct sdio_embedded_func *funcs; + int num_funcs; +}; + +struct mmc_platform_data { + unsigned int ocr_mask; /* available voltages */ + u32 (*translate_vdd)(struct device *, unsigned int); + unsigned int (*status)(struct device *); + struct embedded_sdio_data *embedded_sdio; + int (*register_status_notify)(void (*callback)(int card_present, void *dev_id), void *dev_id); +}; + +#endif |