Эх сурвалжийг харах

clocksource/drivers/h8300_timer8: Fix irq return value check

The value returned in case of error for the 'irq_of_parse_and_map' function is
zero in case of error. Fix the check in the init code.

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Daniel Lezcano 9 жил өмнө
parent
commit
54a0cd5a7e

+ 1 - 1
drivers/clocksource/h8300_timer8.c

@@ -230,7 +230,7 @@ static void __init h8300_8timer_init(struct device_node *node)
 	}
 	}
 
 
 	irq = irq_of_parse_and_map(node, 0);
 	irq = irq_of_parse_and_map(node, 0);
-	if (irq < 0) {
+	if (!irq) {
 		pr_err("failed to get irq for clockevent\n");
 		pr_err("failed to get irq for clockevent\n");
 		goto unmap_reg;
 		goto unmap_reg;
 	}
 	}