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>
This commit is contained in:
Glauber Costa 2008-06-24 09:27:19 -03:00 committed by Ingo Molnar
parent 26e9e57b10
commit ff1b15b646

View file

@ -38,9 +38,9 @@ static void delay_loop(unsigned long loops)
"1: jmp 2f \n" "1: jmp 2f \n"
".align 16 \n" ".align 16 \n"
"2: decl %0 \n" "2: dec %0 \n"
" jnz 2b \n" " jnz 2b \n"
"3: decl %0 \n" "3: dec %0 \n"
: /* we don't need output */ : /* we don't need output */
:"a" (loops) :"a" (loops)