[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20141114220419.GA32497@dtor-ws>
Date: Fri, 14 Nov 2014 14:04:19 -0800
From: Dmitry Torokhov <dtor@...omium.org>
To: Ley Foon Tan <lftan@...era.com>
Cc: nios2-dev@...ts.rocketboards.org, linux-kernel@...r.kernel.org
Subject: [PATCH] nios2: fix error handling of irq_of_parse_and_map
Return value of irq_of_parse_and_map() is unsigned int, with 0
indicating failure, so testing for negative result never works.
Signed-off-by: Dmitry Torokhov <dtor@...omium.org>
---
Not tested, found by casual code inspection.
arch/nios2/kernel/time.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/nios2/kernel/time.c b/arch/nios2/kernel/time.c
index d90ca1b..23729e8 100644
--- a/arch/nios2/kernel/time.c
+++ b/arch/nios2/kernel/time.c
@@ -228,7 +228,7 @@ static __init void nios2_clockevent_init(struct device_node *timer)
nios2_timer_get_base_and_freq(timer, &iobase, &freq);
irq = irq_of_parse_and_map(timer, 0);
- if (irq < 0)
+ if (!irq)
panic("Unable to parse timer irq\n");
nios2_ce.timer.base = iobase;
--
2.1.0.rc2.206.gedb03e5
--
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists