projects
/
GitHub
/
moto-9609
/
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:
26e9e57
)
x86: don't use size specifiers.
author
Glauber Costa
<gcosta@redhat.com>
Tue, 24 Jun 2008 12:27:19 +0000
(09:27 -0300)
committer
Ingo Molnar
<mingo@elte.hu>
Wed, 9 Jul 2008 06:49:27 +0000
(08:49 +0200)
Remove the "l" from inline asm at arch/x86/lib/delay_32.c.
It is not needed.
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/lib/delay_32.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/lib/delay_32.c
b/arch/x86/lib/delay_32.c
index ef691316f8b6e6ed7a9c0467889d3f6278ba8634..54013f87d9564ab02262623ef6eb7325c3fbc8d6 100644
(file)
--- a/
arch/x86/lib/delay_32.c
+++ b/
arch/x86/lib/delay_32.c
@@
-38,9
+38,9
@@
static void delay_loop(unsigned long loops)
"1: jmp 2f \n"
".align 16 \n"
- "2: dec
l %0
\n"
+ "2: dec
%0
\n"
" jnz 2b \n"
- "3: dec
l %0
\n"
+ "3: dec
%0
\n"
: /* we don't need output */
:"a" (loops)