diff options
Diffstat (limited to 'arch/powerpc/platforms/iseries/irq.c')
-rw-r--r-- | arch/powerpc/platforms/iseries/irq.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/powerpc/platforms/iseries/irq.c b/arch/powerpc/platforms/iseries/irq.c index 44c245672dd8..5225abfafd9b 100644 --- a/arch/powerpc/platforms/iseries/irq.c +++ b/arch/powerpc/platforms/iseries/irq.c | |||
@@ -85,7 +85,7 @@ static DEFINE_SPINLOCK(pending_irqs_lock); | |||
85 | static int num_pending_irqs; | 85 | static int num_pending_irqs; |
86 | static int pending_irqs[NR_IRQS]; | 86 | static int pending_irqs[NR_IRQS]; |
87 | 87 | ||
88 | static void int_received(struct pci_event *event, struct pt_regs *regs) | 88 | static void int_received(struct pci_event *event) |
89 | { | 89 | { |
90 | int irq; | 90 | int irq; |
91 | 91 | ||
@@ -143,11 +143,11 @@ static void int_received(struct pci_event *event, struct pt_regs *regs) | |||
143 | } | 143 | } |
144 | } | 144 | } |
145 | 145 | ||
146 | static void pci_event_handler(struct HvLpEvent *event, struct pt_regs *regs) | 146 | static void pci_event_handler(struct HvLpEvent *event) |
147 | { | 147 | { |
148 | if (event && (event->xType == HvLpEvent_Type_PciIo)) { | 148 | if (event && (event->xType == HvLpEvent_Type_PciIo)) { |
149 | if (hvlpevent_is_int(event)) | 149 | if (hvlpevent_is_int(event)) |
150 | int_received((struct pci_event *)event, regs); | 150 | int_received((struct pci_event *)event); |
151 | else | 151 | else |
152 | printk(KERN_ERR | 152 | printk(KERN_ERR |
153 | "pci_event_handler: unexpected ack received\n"); | 153 | "pci_event_handler: unexpected ack received\n"); |
@@ -305,7 +305,7 @@ int __init iSeries_allocate_IRQ(HvBusNumber bus, | |||
305 | /* | 305 | /* |
306 | * Get the next pending IRQ. | 306 | * Get the next pending IRQ. |
307 | */ | 307 | */ |
308 | unsigned int iSeries_get_irq(struct pt_regs *regs) | 308 | unsigned int iSeries_get_irq(void) |
309 | { | 309 | { |
310 | int irq = NO_IRQ_IGNORE; | 310 | int irq = NO_IRQ_IGNORE; |
311 | 311 | ||
@@ -316,7 +316,7 @@ unsigned int iSeries_get_irq(struct pt_regs *regs) | |||
316 | } | 316 | } |
317 | #endif /* CONFIG_SMP */ | 317 | #endif /* CONFIG_SMP */ |
318 | if (hvlpevent_is_pending()) | 318 | if (hvlpevent_is_pending()) |
319 | process_hvlpevents(regs); | 319 | process_hvlpevents(); |
320 | 320 | ||
321 | #ifdef CONFIG_PCI | 321 | #ifdef CONFIG_PCI |
322 | if (num_pending_irqs) { | 322 | if (num_pending_irqs) { |