aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/common/gic.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/common/gic.c')
-rw-r--r--arch/arm/common/gic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/common/gic.c b/arch/arm/common/gic.c
index 90f6b7f52d48..664c7b8b1ba8 100644
--- a/arch/arm/common/gic.c
+++ b/arch/arm/common/gic.c
@@ -255,9 +255,9 @@ void __cpuinit gic_cpu_init(unsigned int gic_nr, void __iomem *base)
255} 255}
256 256
257#ifdef CONFIG_SMP 257#ifdef CONFIG_SMP
258void gic_raise_softirq(cpumask_t cpumask, unsigned int irq) 258void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)
259{ 259{
260 unsigned long map = *cpus_addr(cpumask); 260 unsigned long map = *cpus_addr(*mask);
261 261
262 /* this always happens on GIC0 */ 262 /* this always happens on GIC0 */
263 writel(map << 16 | irq, gic_data[0].dist_base + GIC_DIST_SOFTINT); 263 writel(map << 16 | irq, gic_data[0].dist_base + GIC_DIST_SOFTINT);