summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--linux/src/arch/i386/lib/delay.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5de9ba4..ab429db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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"
- :"=&amp;a" (d0)
+ :"=&a" (d0)
:"0" (loops));
}
@@ -34,7 +34,7 @@ inline void __const_udelay(unsigned long xloops)
{
int d0;
__asm__("mull %0"
- :"=d" (xloops), "=&amp;a" (d0)
+ :"=d" (xloops), "=&a" (d0)
:"1" (xloops),"0" (loops_per_sec));
__delay(xloops);
}