Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'fixes' of git://git.linaro.org/people/rmk/linux-arm

Pull final ARM fix from Russell King:
"One final fix, spotted by Will, to do with what happens when we boot a
SMP kernel on UP."

* 'fixes' of git://git.linaro.org/people/rmk/linux-arm:
ARM: 7586/1: sp804: set cpumask to cpu_possible_mask for clock event device

+1 -1
+1 -1
arch/arm/common/timer-sp.c
··· 162 162 .set_mode = sp804_set_mode, 163 163 .set_next_event = sp804_set_next_event, 164 164 .rating = 300, 165 - .cpumask = cpu_all_mask, 166 165 }; 167 166 168 167 static struct irqaction sp804_timer_irq = { ··· 184 185 clkevt_reload = DIV_ROUND_CLOSEST(rate, HZ); 185 186 evt->name = name; 186 187 evt->irq = irq; 188 + evt->cpumask = cpu_possible_mask; 187 189 188 190 setup_irq(irq, &sp804_timer_irq); 189 191 clockevents_config_and_register(evt, rate, 0xf, 0xffffffff);