]> Pileus Git - ~andy/linux/commitdiff
cpuidle: calxeda: Add missing __iomem annotation
authorJingoo Han <jg1.han@samsung.com>
Fri, 9 Aug 2013 07:09:15 +0000 (16:09 +0900)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Mon, 12 Aug 2013 09:28:29 +0000 (11:28 +0200)
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] <asn:2>*<noident>
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] <asn:2>*<noident>
drivers/cpuidle/cpuidle-calxeda.c:56:24:    got void *extern [addressable] [toplevel] scu_base_addr

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
drivers/cpuidle/cpuidle-calxeda.c

index 0e6e408c0a630b71c466f3fabaa7decd1b97fed0..34605847957269635b650997d51ac7eb9062416f 100644 (file)
@@ -35,7 +35,7 @@
 #include <asm/cp15.h>
 
 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)
 {