diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2013-10-25 12:16:11 +0100 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-12-11 11:07:30 +0100 |
commit | 2c28f32ca4c98b41ad95f62fa27f59f3117931d4 (patch) | |
tree | 1d8e4b2e3dc174ffb7242d22407cb68c61c592f4 | |
parent | 247f325aaddb8b6117959f70c26ba735360c4160 (diff) | |
download | linux-2c28f32ca4c98b41ad95f62fa27f59f3117931d4.tar.bz2 |
clocksource: sun4i: Change CPU mask to cpu_possible_mask
The interrupt for the timer is a shared processor interrupt, so any CPU
found in the system can handle it. Switch to our cpumask to
cpu_possible_mask instead of cpumask_of(0).
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r-- | drivers/clocksource/sun4i_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/sun4i_timer.c b/drivers/clocksource/sun4i_timer.c index a7f492e0c7fc..6a76b4ec3470 100644 --- a/drivers/clocksource/sun4i_timer.c +++ b/drivers/clocksource/sun4i_timer.c @@ -187,7 +187,7 @@ static void __init sun4i_timer_init(struct device_node *node) val = readl(timer_base + TIMER_IRQ_EN_REG); writel(val | TIMER_IRQ_EN(0), timer_base + TIMER_IRQ_EN_REG); - sun4i_clockevent.cpumask = cpumask_of(0); + sun4i_clockevent.cpumask = cpu_possible_mask; sun4i_clockevent.irq = irq; clockevents_config_and_register(&sun4i_clockevent, rate, |