diff options
Diffstat (limited to 'drivers/irqchip/irq-gic.c')
| -rw-r--r-- | drivers/irqchip/irq-gic.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/irqchip/irq-gic.c b/drivers/irqchip/irq-gic.c index 644d7246842..a32e0d5aa45 100644 --- a/drivers/irqchip/irq-gic.c +++ b/drivers/irqchip/irq-gic.c @@ -648,7 +648,7 @@ void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)  	/* Convert our logical CPU mask into a physical one. */  	for_each_cpu(cpu, mask) -		map |= 1 << cpu_logical_map(cpu); +		map |= gic_cpu_map[cpu];  	/*  	 * Ensure that stores to Normal memory are visible to the |