Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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