diff options
author | Glauber Costa <gcosta@redhat.com> | 2008-06-24 08:27:19 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-09 02:49:27 -0400 |
commit | ff1b15b646177c6cc465ac2dd0be6ae16e965654 (patch) | |
tree | a075dc50ba34dc1d4bb23d624babd2daf73487c4 /arch/x86 | |
parent | 26e9e57b106445bbd8c965985e4e8af5293ae005 (diff) |
x86: don't use size specifiers.
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>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/lib/delay_32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/lib/delay_32.c b/arch/x86/lib/delay_32.c index ef691316f8b6..54013f87d956 100644 --- 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) | |||
38 | "1: jmp 2f \n" | 38 | "1: jmp 2f \n" |
39 | 39 | ||
40 | ".align 16 \n" | 40 | ".align 16 \n" |
41 | "2: decl %0 \n" | 41 | "2: dec %0 \n" |
42 | " jnz 2b \n" | 42 | " jnz 2b \n" |
43 | "3: decl %0 \n" | 43 | "3: dec %0 \n" |
44 | 44 | ||
45 | : /* we don't need output */ | 45 | : /* we don't need output */ |
46 | :"a" (loops) | 46 | :"a" (loops) |