From: Jingoo Han Date: Fri, 9 Aug 2013 07:09:15 +0000 (+0900) Subject: cpuidle: calxeda: Add missing __iomem annotation X-Git-Tag: v3.12-rc1~35^2~3^2~13^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e0c190dbf51f587ac78b3b1bcd85648a7dbe166;p=profile%2Fivi%2Fkernel-x86-ivi.git cpuidle: calxeda: Add missing __iomem annotation Added missing __iomem annotation in order to fix the following sparse warnings: drivers/cpuidle/cpuidle-calxeda.c:44:24: warning: incorrect type in argument 1 (different address spaces) drivers/cpuidle/cpuidle-calxeda.c:44:24: expected void [noderef] * drivers/cpuidle/cpuidle-calxeda.c:44:24: got void *extern [addressable] [toplevel] scu_base_addr drivers/cpuidle/cpuidle-calxeda.c:56:24: warning: incorrect type in argument 1 (different address spaces) drivers/cpuidle/cpuidle-calxeda.c:56:24: expected void [noderef] * drivers/cpuidle/cpuidle-calxeda.c:56:24: got void *extern [addressable] [toplevel] scu_base_addr Signed-off-by: Jingoo Han Signed-off-by: Daniel Lezcano --- diff --git a/drivers/cpuidle/cpuidle-calxeda.c b/drivers/cpuidle/cpuidle-calxeda.c index 0e6e408..3460584 100644 --- a/drivers/cpuidle/cpuidle-calxeda.c +++ b/drivers/cpuidle/cpuidle-calxeda.c @@ -35,7 +35,7 @@ #include extern void highbank_set_cpu_jump(int cpu, void *jump_addr); -extern void *scu_base_addr; +extern void __iomem *scu_base_addr; static noinline void calxeda_idle_restore(void) {