aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2006-06-29 05:24:39 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-06-29 13:26:22 -0400
commit2e60bbb6d50de654d8e68f115161e27878b5e72d (patch)
treeff92bd2a7aa0a6bcb3b00280fbb906ea1006b226 /kernel
parenta8553acd6c14e827078779c0a0ee1c18f27b2403 (diff)
[PATCH] genirq: cleanup: remove fastcall
Now that i386 defaults to regparm, explicit uses of fastcall are not needed anymore. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/irq/handle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c
index cc786aaf30d6..6b313ccf0edd 100644
--- a/kernel/irq/handle.c
+++ b/kernel/irq/handle.c
@@ -79,8 +79,8 @@ irqreturn_t no_action(int cpl, void *dev_id, struct pt_regs *regs)
79/* 79/*
80 * Have got an event to handle: 80 * Have got an event to handle:
81 */ 81 */
82fastcall irqreturn_t handle_IRQ_event(unsigned int irq, struct pt_regs *regs, 82irqreturn_t handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
83 struct irqaction *action) 83 struct irqaction *action)
84{ 84{
85 irqreturn_t ret, retval = IRQ_NONE; 85 irqreturn_t ret, retval = IRQ_NONE;
86 unsigned int status = 0; 86 unsigned int status = 0;