Skip to content
Snippets Groups Projects
Commit 07e449b5 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven
Browse files

m68k: sun3 core - Kill warn_unused_result warnings


warning: ignoring return value of 'request_irq', declared with attribute
warn_unused_result

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent 41904f8f
No related branches found
No related tags found
No related merge requests found
...@@ -105,7 +105,10 @@ void __init sun3_init_IRQ(void) ...@@ -105,7 +105,10 @@ void __init sun3_init_IRQ(void)
m68k_setup_irq_controller(&sun3_irq_controller, IRQ_AUTO_1, 7); m68k_setup_irq_controller(&sun3_irq_controller, IRQ_AUTO_1, 7);
m68k_setup_user_interrupt(VEC_USER, 128, NULL); m68k_setup_user_interrupt(VEC_USER, 128, NULL);
request_irq(IRQ_AUTO_5, sun3_int5, 0, "int5", NULL); if (request_irq(IRQ_AUTO_5, sun3_int5, 0, "int5", NULL))
request_irq(IRQ_AUTO_7, sun3_int7, 0, "int7", NULL); pr_err("Couldn't register %s interrupt\n", "int5");
request_irq(IRQ_USER+127, sun3_vec255, 0, "vec255", NULL); if (request_irq(IRQ_AUTO_7, sun3_int7, 0, "int7", NULL))
pr_err("Couldn't register %s interrupt\n", "int7");
if (request_irq(IRQ_USER+127, sun3_vec255, 0, "vec255", NULL))
pr_err("Couldn't register %s interrupt\n", "vec255");
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment