aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/kernel/irq/resend.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2010-09-27 12:45:53 +0000
committerThomas Gleixner <tglx@linutronix.de>2010-10-04 12:43:50 +0200
commit21e2b8c62cca8f7dbec0c8c131ca1637e4a5670f (patch)
tree8810be220dc49cf78c055ba960b1083cd1459a21 /kernel/irq/resend.c
parentgenirq: Provide compat handling for chip->set_wake() (diff)
downloadwireguard-linux-21e2b8c62cca8f7dbec0c8c131ca1637e4a5670f.tar.xz
wireguard-linux-21e2b8c62cca8f7dbec0c8c131ca1637e4a5670f.zip
genirq: Provide compat handling for chip->retrigger()
Wrap the old chip function retrigger() until the migration is complete and the old chip functions are removed. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Peter Zijlstra <peterz@infradead.org> LKML-Reference: <20100927121843.025801092@linutronix.de> Reviewed-by: H. Peter Anvin <hpa@zytor.com> Reviewed-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/irq/resend.c')
-rw-r--r--kernel/irq/resend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/irq/resend.c b/kernel/irq/resend.c
index a798a2328f8a..891115a929aa 100644
--- a/kernel/irq/resend.c
+++ b/kernel/irq/resend.c
@@ -70,8 +70,8 @@ void check_irq_resend(struct irq_desc *desc, unsigned int irq)
if ((status & (IRQ_LEVEL | IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) {
desc->status = (status & ~IRQ_PENDING) | IRQ_REPLAY;
- if (!desc->irq_data.chip->retrigger ||
- !desc->irq_data.chip->retrigger(irq)) {
+ if (!desc->irq_data.chip->irq_retrigger ||
+ !desc->irq_data.chip->irq_retrigger(&desc->irq_data)) {
#ifdef CONFIG_HARDIRQS_SW_RESEND
/* Set it pending and activate the softirq: */
set_bit(irq, irqs_resend);