Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 13 Oct 1998 16:25:46 +0000 (16:25 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 13 Oct 1998 16:25:46 +0000 (16:25 +0000)
* sysdeps/unix/sysv/linux/alpha/ioperm.c (inline_outb): Fix output
parameter format string.
(inline_outw): Likewise.

ChangeLog
sysdeps/unix/sysv/linux/alpha/ioperm.c

index f22bb5c931c0ae56ef0805bc18085d4a9a9330f4..39daebc928f3ec103f5192caef2e794fa06a6b36 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 1998-10-13  Ulrich Drepper  <drepper@cygnus.com>
 
+       * sysdeps/unix/sysv/linux/alpha/ioperm.c (inline_outb): Fix output
+       parameter format string.
+       (inline_outw): Likewise.
+
        * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Include
        string.h to get memcpy prototype and NULL definition.
 
index 83c4ec21ac8bbab9155a5183b079065013354bb8..bd642e33c80d2c6c398448dd8a8918eb173ab9b3 100644 (file)
@@ -206,7 +206,7 @@ inline_outb (unsigned char b, unsigned long int port, iosys_t iosys)
   unsigned long int addr = port_to_cpu_addr (port, iosys, 1);
 
   inline_sethae (0, iosys);
-  asm ("insbl %2,%1,%0" : "r=" (w) : "ri" (port & 0x3), "r" (b));
+  asm ("insbl %2,%1,%0" : "=r" (w) : "ri" (port & 0x3), "r" (b));
   *(vuip)addr = w;
   mb ();
 }
@@ -219,7 +219,7 @@ inline_outw (unsigned short int b, unsigned long int port, iosys_t iosys)
   unsigned long int addr = port_to_cpu_addr (port, iosys, 2);
 
   inline_sethae (0, iosys);
-  asm ("inswl %2,%1,%0" : "r=" (w) : "ri" (port & 0x3), "r" (b));
+  asm ("inswl %2,%1,%0" : "=r" (w) : "ri" (port & 0x3), "r" (b));
   *(vuip)addr = w;
   mb ();
 }