diff options
author | Baruch Siach <baruch@tkos.co.il> | 2013-05-29 04:11:17 -0400 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-06-06 11:23:13 -0400 |
commit | 1a33bd2be705cbb3f57d7223b60baea441039307 (patch) | |
tree | 3914ff4ae67a60f3d8efb200dc395b270de07710 | |
parent | 1eaff67266b6b6c97bbd33cf2c20577822836413 (diff) |
clocksource: dw_apb: Fix error check
irq_of_parse_and_map() returns 0 on error, while the code checks for NO_IRQ.
This breaks on platforms that have NO_IRQ != 0.
Cc: <stable@vger.kernel.org>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
-rw-r--r-- | drivers/clocksource/dw_apb_timer_of.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/dw_apb_timer_of.c b/drivers/clocksource/dw_apb_timer_of.c index ab09ed3742ee..6b02eddc5f50 100644 --- a/drivers/clocksource/dw_apb_timer_of.c +++ b/drivers/clocksource/dw_apb_timer_of.c | |||
@@ -44,7 +44,7 @@ static void add_clockevent(struct device_node *event_timer) | |||
44 | u32 irq, rate; | 44 | u32 irq, rate; |
45 | 45 | ||
46 | irq = irq_of_parse_and_map(event_timer, 0); | 46 | irq = irq_of_parse_and_map(event_timer, 0); |
47 | if (irq == NO_IRQ) | 47 | if (irq == 0) |
48 | panic("No IRQ for clock event timer"); | 48 | panic("No IRQ for clock event timer"); |
49 | 49 | ||
50 | timer_get_base_and_rate(event_timer, &iobase, &rate); | 50 | timer_get_base_and_rate(event_timer, &iobase, &rate); |