diff options
Diffstat (limited to 'drivers/infiniband/hw/ehca')
-rw-r--r-- | drivers/infiniband/hw/ehca/ehca_irq.c | 4 | ||||
-rw-r--r-- | drivers/infiniband/hw/ehca/ehca_irq.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/infiniband/hw/ehca/ehca_irq.c b/drivers/infiniband/hw/ehca/ehca_irq.c index 2a65b5be1979..048cc443d1e7 100644 --- a/drivers/infiniband/hw/ehca/ehca_irq.c +++ b/drivers/infiniband/hw/ehca/ehca_irq.c | |||
@@ -360,7 +360,7 @@ static inline void reset_eq_pending(struct ehca_cq *cq) | |||
360 | return; | 360 | return; |
361 | } | 361 | } |
362 | 362 | ||
363 | irqreturn_t ehca_interrupt_neq(int irq, void *dev_id, struct pt_regs *regs) | 363 | irqreturn_t ehca_interrupt_neq(int irq, void *dev_id) |
364 | { | 364 | { |
365 | struct ehca_shca *shca = (struct ehca_shca*)dev_id; | 365 | struct ehca_shca *shca = (struct ehca_shca*)dev_id; |
366 | 366 | ||
@@ -393,7 +393,7 @@ void ehca_tasklet_neq(unsigned long data) | |||
393 | return; | 393 | return; |
394 | } | 394 | } |
395 | 395 | ||
396 | irqreturn_t ehca_interrupt_eq(int irq, void *dev_id, struct pt_regs *regs) | 396 | irqreturn_t ehca_interrupt_eq(int irq, void *dev_id) |
397 | { | 397 | { |
398 | struct ehca_shca *shca = (struct ehca_shca*)dev_id; | 398 | struct ehca_shca *shca = (struct ehca_shca*)dev_id; |
399 | 399 | ||
diff --git a/drivers/infiniband/hw/ehca/ehca_irq.h b/drivers/infiniband/hw/ehca/ehca_irq.h index 85bf1fe16fe4..be579cc0adf6 100644 --- a/drivers/infiniband/hw/ehca/ehca_irq.h +++ b/drivers/infiniband/hw/ehca/ehca_irq.h | |||
@@ -51,10 +51,10 @@ struct ehca_shca; | |||
51 | 51 | ||
52 | int ehca_error_data(struct ehca_shca *shca, void *data, u64 resource); | 52 | int ehca_error_data(struct ehca_shca *shca, void *data, u64 resource); |
53 | 53 | ||
54 | irqreturn_t ehca_interrupt_neq(int irq, void *dev_id, struct pt_regs *regs); | 54 | irqreturn_t ehca_interrupt_neq(int irq, void *dev_id); |
55 | void ehca_tasklet_neq(unsigned long data); | 55 | void ehca_tasklet_neq(unsigned long data); |
56 | 56 | ||
57 | irqreturn_t ehca_interrupt_eq(int irq, void *dev_id, struct pt_regs *regs); | 57 | irqreturn_t ehca_interrupt_eq(int irq, void *dev_id); |
58 | void ehca_tasklet_eq(unsigned long data); | 58 | void ehca_tasklet_eq(unsigned long data); |
59 | 59 | ||
60 | struct ehca_cpu_comp_task { | 60 | struct ehca_cpu_comp_task { |