diff options
Diffstat (limited to 'arch/ppc64/kernel/irq.c')
-rw-r--r-- | arch/ppc64/kernel/irq.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/ppc64/kernel/irq.c b/arch/ppc64/kernel/irq.c index 3defc8c33adf..b1e6acb02a9a 100644 --- a/arch/ppc64/kernel/irq.c +++ b/arch/ppc64/kernel/irq.c | |||
@@ -269,7 +269,6 @@ out: | |||
269 | void do_IRQ(struct pt_regs *regs) | 269 | void do_IRQ(struct pt_regs *regs) |
270 | { | 270 | { |
271 | struct paca_struct *lpaca; | 271 | struct paca_struct *lpaca; |
272 | struct ItLpQueue *lpq; | ||
273 | 272 | ||
274 | irq_enter(); | 273 | irq_enter(); |
275 | 274 | ||
@@ -295,9 +294,8 @@ void do_IRQ(struct pt_regs *regs) | |||
295 | iSeries_smp_message_recv(regs); | 294 | iSeries_smp_message_recv(regs); |
296 | } | 295 | } |
297 | #endif /* CONFIG_SMP */ | 296 | #endif /* CONFIG_SMP */ |
298 | lpq = lpaca->lpqueue_ptr; | 297 | if (ItLpQueue_isLpIntPending(&xItLpQueue)) |
299 | if (lpq && ItLpQueue_isLpIntPending(lpq)) | 298 | lpevent_count += ItLpQueue_process(&xItLpQueue, regs); |
300 | lpevent_count += ItLpQueue_process(lpq, regs); | ||
301 | 299 | ||
302 | irq_exit(); | 300 | irq_exit(); |
303 | 301 | ||