mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
Fix a typo in x86_64 sys/io.h
This commit is contained in:
parent
ea32bcdd3d
commit
f34a1c6f5e
@ -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
|
||||
|
@ -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));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user