mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 13:14:07 +08:00
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@chromium.org> Reviewed-by: Tobias Klauser <tklauser@distanz.ch> Acked-by: Ley Foon Tan <lftan@altera.com>
This commit is contained in:
parent
ac8ab8dd95
commit
b29438f22c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user