projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1721d0
)
i386: fix asm constraint in do_IRQ()
author
Jan Beulich
<jbeulich@novell.com>
Tue, 22 Apr 2008 15:16:50 +0000
(16:16 +0100)
committer
Ingo Molnar
<mingo@elte.hu>
Sat, 26 Apr 2008 15:35:46 +0000
(17:35 +0200)
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>
arch/x86/kernel/irq_32.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/kernel/irq_32.c
b/arch/x86/kernel/irq_32.c
index 6ea67b76a21452f3b7ffacdec52ae8b155f2a21a..00bda7bcda63741178db3ad46b444fe25c8b87a7 100644
(file)
--- 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)
: "=a" (arg1), "=d" (arg2), "=b" (bx)
: "0" (irq), "1" (desc), "2" (isp),
"D" (desc->handle_irq)
- : "memory", "cc"
+ : "memory", "cc"
, "ecx"
);
} else
#endif