diff options
author | Jan Beulich <jbeulich@novell.com> | 2008-04-22 11:16:50 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-26 11:35:46 -0400 |
commit | 5065dbafc299507f16731434e95b91dadff03006 (patch) | |
tree | d7ee5373610fdd6900c27b24a4579318757ba1bf /arch/x86 | |
parent | b1721d0da266b4af8cb4419473b4ca36206ab200 (diff) |
i386: fix asm constraint in do_IRQ()
Two prior changes resulted in the "ecx" clobber being lost.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/irq_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/irq_32.c b/arch/x86/kernel/irq_32.c index 6ea67b76a214..00bda7bcda63 100644 --- a/arch/x86/kernel/irq_32.c +++ b/arch/x86/kernel/irq_32.c | |||
@@ -134,7 +134,7 @@ unsigned int do_IRQ(struct pt_regs *regs) | |||
134 | : "=a" (arg1), "=d" (arg2), "=b" (bx) | 134 | : "=a" (arg1), "=d" (arg2), "=b" (bx) |
135 | : "0" (irq), "1" (desc), "2" (isp), | 135 | : "0" (irq), "1" (desc), "2" (isp), |
136 | "D" (desc->handle_irq) | 136 | "D" (desc->handle_irq) |
137 | : "memory", "cc" | 137 | : "memory", "cc", "ecx" |
138 | ); | 138 | ); |
139 | } else | 139 | } else |
140 | #endif | 140 | #endif |