diff options
author | Sahitya Tummala <stummala@codeaurora.org> | 2010-07-29 07:25:34 -0400 |
---|---|---|
committer | Daniel Walker <dwalker@codeaurora.org> | 2010-08-09 18:48:23 -0400 |
commit | b5d643de3ea28d7844a3a1a00a0a6f50897a2a6b (patch) | |
tree | 1c3cf983d43b386a64c930332862fd306395015f /arch/arm | |
parent | 28d6c3db679dc83a0e77b5a540afb0594bdb7056 (diff) |
msm: mmc: Add msm prefix to platform data structure
Rename mmc_platform_data to msm_mmc_platform_data as it is used
only by MSM platform.
Signed-off-by: Sahitya Tummala <stummala@codeaurora.org>
Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-msm/board-trout-mmc.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-msm/devices-msm7x00.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-msm/include/mach/board.h | 3 | ||||
-rw-r--r-- | arch/arm/mach-msm/include/mach/mmc.h | 2 |
4 files changed, 6 insertions, 4 deletions
diff --git a/arch/arm/mach-msm/board-trout-mmc.c b/arch/arm/mach-msm/board-trout-mmc.c index 0ba3e92e7493..44be8464657b 100644 --- a/arch/arm/mach-msm/board-trout-mmc.c +++ b/arch/arm/mach-msm/board-trout-mmc.c | |||
@@ -160,7 +160,7 @@ static unsigned int trout_sdslot_status(struct device *dev) | |||
160 | | MMC_VDD_25_26 | MMC_VDD_26_27 | MMC_VDD_27_28 \ | 160 | | MMC_VDD_25_26 | MMC_VDD_26_27 | MMC_VDD_27_28 \ |
161 | | MMC_VDD_28_29 | MMC_VDD_29_30 | 161 | | MMC_VDD_28_29 | MMC_VDD_29_30 |
162 | 162 | ||
163 | static struct mmc_platform_data trout_sdslot_data = { | 163 | static struct msm_mmc_platform_data trout_sdslot_data = { |
164 | .ocr_mask = TROUT_MMC_VDD, | 164 | .ocr_mask = TROUT_MMC_VDD, |
165 | .status = trout_sdslot_status, | 165 | .status = trout_sdslot_status, |
166 | .translate_vdd = trout_sdslot_switchvdd, | 166 | .translate_vdd = trout_sdslot_switchvdd, |
diff --git a/arch/arm/mach-msm/devices-msm7x00.c b/arch/arm/mach-msm/devices-msm7x00.c index fde9d8f69f10..4e8c0bcdc92d 100644 --- a/arch/arm/mach-msm/devices-msm7x00.c +++ b/arch/arm/mach-msm/devices-msm7x00.c | |||
@@ -322,7 +322,8 @@ static struct platform_device *msm_sdcc_devices[] __initdata = { | |||
322 | &msm_device_sdc4, | 322 | &msm_device_sdc4, |
323 | }; | 323 | }; |
324 | 324 | ||
325 | int __init msm_add_sdcc(unsigned int controller, struct mmc_platform_data *plat, | 325 | int __init msm_add_sdcc(unsigned int controller, |
326 | struct msm_mmc_platform_data *plat, | ||
326 | unsigned int stat_irq, unsigned long stat_irq_flags) | 327 | unsigned int stat_irq, unsigned long stat_irq_flags) |
327 | { | 328 | { |
328 | struct platform_device *pdev; | 329 | struct platform_device *pdev; |
diff --git a/arch/arm/mach-msm/include/mach/board.h b/arch/arm/mach-msm/include/mach/board.h index a3efb0dc6dd6..5a79bcf50413 100644 --- a/arch/arm/mach-msm/include/mach/board.h +++ b/arch/arm/mach-msm/include/mach/board.h | |||
@@ -41,7 +41,8 @@ void __init msm_init_irq(void); | |||
41 | void __init msm_init_gpio(void); | 41 | void __init msm_init_gpio(void); |
42 | void __init msm_clock_init(struct clk *clock_tbl, unsigned num_clocks); | 42 | void __init msm_clock_init(struct clk *clock_tbl, unsigned num_clocks); |
43 | void __init msm_acpu_clock_init(struct msm_acpu_clock_platform_data *); | 43 | void __init msm_acpu_clock_init(struct msm_acpu_clock_platform_data *); |
44 | int __init msm_add_sdcc(unsigned int controller, struct mmc_platform_data *plat, | 44 | int __init msm_add_sdcc(unsigned int controller, |
45 | struct msm_mmc_platform_data *plat, | ||
45 | unsigned int stat_irq, unsigned long stat_irq_flags); | 46 | unsigned int stat_irq, unsigned long stat_irq_flags); |
46 | 47 | ||
47 | #endif | 48 | #endif |
diff --git a/arch/arm/mach-msm/include/mach/mmc.h b/arch/arm/mach-msm/include/mach/mmc.h index 0ecf25426284..d54b6b086cff 100644 --- a/arch/arm/mach-msm/include/mach/mmc.h +++ b/arch/arm/mach-msm/include/mach/mmc.h | |||
@@ -15,7 +15,7 @@ struct embedded_sdio_data { | |||
15 | int num_funcs; | 15 | int num_funcs; |
16 | }; | 16 | }; |
17 | 17 | ||
18 | struct mmc_platform_data { | 18 | struct msm_mmc_platform_data { |
19 | unsigned int ocr_mask; /* available voltages */ | 19 | unsigned int ocr_mask; /* available voltages */ |
20 | u32 (*translate_vdd)(struct device *, unsigned int); | 20 | u32 (*translate_vdd)(struct device *, unsigned int); |
21 | unsigned int (*status)(struct device *); | 21 | unsigned int (*status)(struct device *); |