From e7b3a47a3b97590dcc3ac433a2694fa786d73af2 Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Sun, 21 Oct 2001 18:14:09 +0000 Subject: 2001-10-21 Marcus Brinkmann * linux/src/arch/i386/lib/delay.c: Convert HTML entities. Reported by John Tobey . --- linux/src/arch/i386/lib/delay.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'linux/src/arch/i386') diff --git a/linux/src/arch/i386/lib/delay.c b/linux/src/arch/i386/lib/delay.c index b1551b2..04ccf16 100644 --- a/linux/src/arch/i386/lib/delay.c +++ b/linux/src/arch/i386/lib/delay.c @@ -26,7 +26,7 @@ void __delay(unsigned long loops) "1:\tjmp 2f\n" ".align 16\n" "2:\tdecl %0\n\tjns 2b" - :"=&a" (d0) + :"=&a" (d0) :"0" (loops)); } @@ -34,7 +34,7 @@ inline void __const_udelay(unsigned long xloops) { int d0; __asm__("mull %0" - :"=d" (xloops), "=&a" (d0) + :"=d" (xloops), "=&a" (d0) :"1" (xloops),"0" (loops_per_sec)); __delay(xloops); } -- cgit v1.2.3