]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
clocksource/drivers/rockchip: Fix bad NO_IRQ usage
authorDaniel Lezcano <daniel.lezcano@linaro.org>
Sun, 20 Sep 2015 14:00:10 +0000 (07:00 -0700)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Tue, 29 Sep 2015 12:33:34 +0000 (14:33 +0200)
The current code assumes the 'irq_of_parse_and_map' will return NO_IRQ in case
of failure. Unfortunately, the NO_IRQ is not consistent across the different
architectures and we must not rely on it.

NO_IRQ is equal to '-1' on ARM and 'irq_of_parse_and_map' returns '0' in case
of an error. Hence, the latter won't be detected and will lead to a crash.

Fix this by just checking 'irq' is different from zero.

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
drivers/clocksource/rockchip_timer.c

index bb2c2b05096455066826a13d5ad1156248f5e64e..d3c1742ded1af7655c3e2e77031ab3801ea84761 100644 (file)
@@ -148,7 +148,7 @@ static void __init rk_timer_init(struct device_node *np)
        bc_timer.freq = clk_get_rate(timer_clk);
 
        irq = irq_of_parse_and_map(np, 0);
-       if (irq == NO_IRQ) {
+       if (!irq) {
                pr_err("Failed to map interrupts for '%s'\n", TIMER_NAME);
                return;
        }