]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix a typo in x86_64 sys/io.h
authorH.J. Lu <hjl.tools@gmail.com>
Sat, 2 Jun 2012 00:43:26 +0000 (17:43 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Sat, 2 Jun 2012 00:43:26 +0000 (17:43 -0700)
ChangeLog
sysdeps/unix/sysv/linux/x86_64/sys/io.h

index 49daa0e352ae719f902073dace83f014f43c1b60..4243e52b9667b9f1fe59a38e42fe47ccec0a1603 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/unix/sysv/linux/x86_64/sys/io.h (outsw): Fix a typo.
+
 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile
index 534b6d3a09950f2baf12cd4276ece00622567c7c..ce9fd948b6fb9bf3e33c6fc788525776231f897d 100644 (file)
@@ -165,7 +165,7 @@ static __inline void
 outsw (unsigned short int __port, const void *__addr,
        unsigned long int __count)
 {
-  __asm__ __volatile__ ("cld ; rep ; outsw":"=S" (____addr), "=c" (__count)
+  __asm__ __volatile__ ("cld ; rep ; outsw":"=S" (__addr), "=c" (__count)
                        :"d" (__port), "0" (__addr), "1" (__count));
 }