forked from Minki/linux
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>
This commit is contained in:
parent
b1721d0da2
commit
5065dbafc2
@ -134,7 +134,7 @@ unsigned int do_IRQ(struct pt_regs *regs)
|
||||
: "=a" (arg1), "=d" (arg2), "=b" (bx)
|
||||
: "0" (irq), "1" (desc), "2" (isp),
|
||||
"D" (desc->handle_irq)
|
||||
: "memory", "cc"
|
||||
: "memory", "cc", "ecx"
|
||||
);
|
||||
} else
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user