Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b29438f2 authored by Dmitry Torokhov's avatar Dmitry Torokhov Committed by Ley Foon Tan
Browse files

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: default avatarDmitry Torokhov <dtor@chromium.org>
Reviewed-by: default avatarTobias Klauser <tklauser@distanz.ch>
Acked-by: default avatarLey Foon Tan <lftan@altera.com>
parent ac8ab8dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;