diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2011-09-19 10:54:04 -0700 |
---|---|---|
committer | David Brown <davidb@codeaurora.org> | 2011-11-11 10:38:08 -0800 |
commit | 2b222a2971e4d73fc25c09aeb203c16c0c3c142e (patch) | |
tree | 29dc51cdc5a66e6e49d0b7f6e42d7dda27ebc7ec /arch/arm/mach-msm/platsmp.c | |
parent | a3d3ef9d4fd57cfd407c8d2d0a7daec000468ebf (diff) | |
download | blackbird-obmc-linux-2b222a2971e4d73fc25c09aeb203c16c0c3c142e.tar.gz blackbird-obmc-linux-2b222a2971e4d73fc25c09aeb203c16c0c3c142e.zip |
msm: platsmp: Mark ioremapped memory as __iomem
Fixes a handful of sparse warnings.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: David Brown <davidb@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm/platsmp.c')
-rw-r--r-- | arch/arm/mach-msm/platsmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-msm/platsmp.c b/arch/arm/mach-msm/platsmp.c index fdec58aaa35c..0b3e357c4c8c 100644 --- a/arch/arm/mach-msm/platsmp.c +++ b/arch/arm/mach-msm/platsmp.c @@ -79,7 +79,7 @@ static __cpuinit void prepare_cold_cpu(unsigned int cpu) ret = scm_set_boot_addr(virt_to_phys(msm_secondary_startup), SCM_FLAG_COLDBOOT_CPU1); if (ret == 0) { - void *sc1_base_ptr; + void __iomem *sc1_base_ptr; sc1_base_ptr = ioremap_nocache(0x00902000, SZ_4K*2); if (sc1_base_ptr) { writel(0, sc1_base_ptr + VDD_SC1_ARRAY_CLAMP_GFS_CTL); |