Fix a typo in x86_64 sys/io.h

This commit is contained in:
H.J. Lu 2012-06-01 17:43:26 -07:00
parent ea32bcdd3d
commit f34a1c6f5e
2 changed files with 5 additions and 1 deletions

View File

@ -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

View 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));
}