Commit 5065dbaf authored by Jan Beulich's avatar Jan Beulich Committed by Ingo Molnar

i386: fix asm constraint in do_IRQ()

Two prior changes resulted in the "ecx" clobber being lost.
Signed-off-by: default avatarJan Beulich <jbeulich@novell.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent b1721d0d
...@@ -134,7 +134,7 @@ unsigned int do_IRQ(struct pt_regs *regs) ...@@ -134,7 +134,7 @@ unsigned int do_IRQ(struct pt_regs *regs)
: "=a" (arg1), "=d" (arg2), "=b" (bx) : "=a" (arg1), "=d" (arg2), "=b" (bx)
: "0" (irq), "1" (desc), "2" (isp), : "0" (irq), "1" (desc), "2" (isp),
"D" (desc->handle_irq) "D" (desc->handle_irq)
: "memory", "cc" : "memory", "cc", "ecx"
); );
} else } else
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment