[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1160126862512-git-send-email-hskinnemoen@atmel.com>
Date: Fri, 06 Oct 2006 11:27:41 +0200
From: Haavard Skinnemoen <hskinnemoen@...el.com>
To: torvalds@...l.org
Cc: dhowells@...hat.com, linux-kernel@...r.kernel.org,
Haavard Skinnemoen <hskinnemoen@...el.com>
Subject: [PATCH] IRQ: Fix build breakage with CONFIG_HARDIRQS_SW_RESEND=y
resend_irqs() in kernel/irq/resend.c shouldn't pass regs to
desc->handle_irq() anymore.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@...el.com>
---
kernel/irq/resend.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/irq/resend.c b/kernel/irq/resend.c
index 35f10f7..5bfeaed 100644
--- a/kernel/irq/resend.c
+++ b/kernel/irq/resend.c
@@ -38,7 +38,7 @@ static void resend_irqs(unsigned long ar
clear_bit(irq, irqs_resend);
desc = irq_desc + irq;
local_irq_disable();
- desc->handle_irq(irq, desc, NULL);
+ desc->handle_irq(irq, desc);
local_irq_enable();
}
}
--
1.4.1.1
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists