diff options
author | Geoff Levand <geoffrey.levand@am.sony.com> | 2007-05-11 13:41:59 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-11 21:32:48 -0400 |
commit | 28820d9f793b4d9998d5d4132b8bab0ec9bf6ec3 (patch) | |
tree | 274581dc5092e76dae5defffc0f7ad455a38d709 /arch | |
parent | fd6e9d3945ee122eb513ada8b17296d243c1ce5e (diff) |
[POWERPC] PS3: Fix request_irq warning
Fix compiler warning:
ps3/smp.c:122: warning: ignoring return value of 'request_irq'
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/ps3/smp.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/ps3/smp.c b/arch/powerpc/platforms/ps3/smp.c index 8729348c0608..53416ec5198b 100644 --- a/arch/powerpc/platforms/ps3/smp.c +++ b/arch/powerpc/platforms/ps3/smp.c | |||
@@ -118,9 +118,11 @@ static void __init ps3_smp_setup_cpu(int cpu) | |||
118 | DBG("%s:%d: (%d, %d) => virq %u\n", | 118 | DBG("%s:%d: (%d, %d) => virq %u\n", |
119 | __func__, __LINE__, cpu, i, virqs[i]); | 119 | __func__, __LINE__, cpu, i, virqs[i]); |
120 | 120 | ||
121 | result = request_irq(virqs[i], ipi_function_handler, | ||
122 | IRQF_DISABLED, names[i], (void*)(long)i); | ||
121 | 123 | ||
122 | request_irq(virqs[i], ipi_function_handler, IRQF_DISABLED, | 124 | if (result) |
123 | names[i], (void*)(long)i); | 125 | virqs[i] = NO_IRQ; |
124 | } | 126 | } |
125 | 127 | ||
126 | ps3_register_ipi_debug_brk(cpu, virqs[PPC_MSG_DEBUGGER_BREAK]); | 128 | ps3_register_ipi_debug_brk(cpu, virqs[PPC_MSG_DEBUGGER_BREAK]); |