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

Commit ff1b15b6 authored by Glauber Costa's avatar Glauber Costa Committed by Ingo Molnar
Browse files

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: default avatarGlauber Costa <gcosta@redhat.com>
Signed-off-by: default avatarH. Peter Anvin <hpa@zytor.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 26e9e57b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -38,9 +38,9 @@ static void delay_loop(unsigned long loops)
		"1:	jmp 2f		\n"

		".align 16		\n"
		"2:	decl %0		\n"
		"2:	dec %0		\n"
		"	jnz 2b		\n"
		"3:	decl %0		\n"
		"3:	dec %0		\n"

		: /* we don't need output */
		:"a" (loops)