diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2008-12-30 14:01:07 +0100 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2009-01-12 20:56:35 +0100 |
commit | 844306538920b3aaf6806e238f0c0309a1e2bb5f (patch) | |
tree | 447f53dcaad1f0aab1216b34283a1ba72821c7de /arch/m68k | |
parent | 66acd2581259d80935fc5216b4b1268d639d9143 (diff) | |
download | linux-3.10-844306538920b3aaf6806e238f0c0309a1e2bb5f.tar.gz linux-3.10-844306538920b3aaf6806e238f0c0309a1e2bb5f.tar.bz2 linux-3.10-844306538920b3aaf6806e238f0c0309a1e2bb5f.zip |
m68k: apollo core - Kill warn_unused_result warnings
warning: ignoring return value of 'request_irq', declared with attribute
warn_unused_result
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/apollo/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/m68k/apollo/config.c b/arch/m68k/apollo/config.c index cf215a082cc..8d3eafab1ff 100644 --- a/arch/m68k/apollo/config.c +++ b/arch/m68k/apollo/config.c @@ -200,7 +200,8 @@ void dn_sched_init(irq_handler_t timer_routine) printk("*(0x10803) %02x\n",*(volatile unsigned char *)(timer+0x3)); #endif - request_irq(IRQ_APOLLO, dn_timer_int, 0, "time", timer_routine); + if (request_irq(IRQ_APOLLO, dn_timer_int, 0, "time", timer_routine)) + pr_err("Couldn't register timer interrupt\n"); } unsigned long dn_gettimeoffset(void) { |