Run Nindent on memdump/io.h
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:36 +0000 (15:10 -0700)
Automatically reformat memdump/io.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
memdump/io.h

index a592402..e5e3745 100644 (file)
@@ -3,38 +3,38 @@
 
 static inline void outb(unsigned char v, unsigned short p)
 {
-  asm volatile("outb %1,%0" : : "d" (p), "a" (v));
+    asm volatile ("outb %1,%0"::"d" (p), "a"(v));
 }
 
 static inline unsigned char inb(unsigned short p)
 {
-  unsigned char v;
-  asm volatile("inb %1,%0" : "=a" (v) : "d" (p));
-  return v;
+    unsigned char v;
+    asm volatile ("inb %1,%0":"=a" (v):"d"(p));
+    return v;
 }
 
 static inline void outw(unsigned short v, unsigned short p)
 {
-  asm volatile("outw %1,%0" : : "d" (p), "a" (v));
+    asm volatile ("outw %1,%0"::"d" (p), "a"(v));
 }
 
 static inline unsigned short inw(unsigned short p)
 {
-  unsigned short v;
-  asm volatile("inw %1,%0" : "=a" (v) : "d" (p));
-  return v;
+    unsigned short v;
+    asm volatile ("inw %1,%0":"=a" (v):"d"(p));
+    return v;
 }
 
 static inline void outl(unsigned int v, unsigned short p)
 {
-  asm volatile("outl %1,%0" : : "d" (p), "a" (v));
+    asm volatile ("outl %1,%0"::"d" (p), "a"(v));
 }
 
 static inline unsigned int inl(unsigned short p)
 {
-  unsigned int v;
-  asm volatile("inl %1,%0" : "=a" (v) : "d" (p));
-  return v;
+    unsigned int v;
+    asm volatile ("inl %1,%0":"=a" (v):"d"(p));
+    return v;
 }
 
 #endif