diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | linux/src/arch/i386/lib/delay.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2001-10-21 Marcus Brinkmann <marcus@gnu.org> + + * linux/src/arch/i386/lib/delay.c: Convert HTML entities. + Reported by John Tobey <jtobey@john-edwin-tobey.org>. + 2001-10-13 Marcus Brinkmann <marcus@gnu.org> * debian/changelog: Update for next release. 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); } |