diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-07-28 19:16:34 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-07-31 16:35:30 -0400 |
commit | c3dd8cdf8563ac46b27b0cacfda5e7e6b18c4a46 (patch) | |
tree | c38e53453fa94ee82f8e713ae5ba9d90f26f000a /arch/mips/sgi-ip32 | |
parent | 89c960961d79ce87dfbc67bc05d254e6ee079939 (diff) |
[MIPS] IP32: Don't ignore request_irq's return value.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip32')
-rw-r--r-- | arch/mips/sgi-ip32/ip32-reset.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/sgi-ip32/ip32-reset.c b/arch/mips/sgi-ip32/ip32-reset.c index db8084411538..624bbdbff2a8 100644 --- a/arch/mips/sgi-ip32/ip32-reset.c +++ b/arch/mips/sgi-ip32/ip32-reset.c | |||
@@ -195,7 +195,8 @@ static __init int ip32_reboot_setup(void) | |||
195 | blink_timer.function = blink_timeout; | 195 | blink_timer.function = blink_timeout; |
196 | atomic_notifier_chain_register(&panic_notifier_list, &panic_block); | 196 | atomic_notifier_chain_register(&panic_notifier_list, &panic_block); |
197 | 197 | ||
198 | request_irq(MACEISA_RTC_IRQ, ip32_rtc_int, 0, "rtc", NULL); | 198 | if (request_irq(MACEISA_RTC_IRQ, ip32_rtc_int, 0, "rtc", NULL)) |
199 | panic("Can't allocate MACEISA RTC IRQ"); | ||
199 | 200 | ||
200 | return 0; | 201 | return 0; |
201 | } | 202 | } |