diff vidix/sysdep/AsmMacros_x86.h @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents eda346733b8c
children 958431e2cde0
line wrap: on
line diff
--- a/vidix/sysdep/AsmMacros_x86.h	Tue May 12 19:25:35 2009 +0000
+++ b/vidix/sysdep/AsmMacros_x86.h	Wed May 13 02:58:57 2009 +0000
@@ -92,7 +92,7 @@
 static __inline__ void svga_outb(short port, char value)
 {
     io_t iov;
-    
+
     iov.val = value;
     iov.port = port;
     ioctl(svgahelper_fd, SVGALIB_HELPER_IOCSOUTB, &iov);
@@ -101,7 +101,7 @@
 static __inline__ void svga_outw(short port, char value)
 {
     io_t iov;
-    
+
     iov.val = value;
     iov.port = port;
     ioctl(svgahelper_fd, SVGALIB_HELPER_IOCSOUTW, &iov);
@@ -110,7 +110,7 @@
 static __inline__ void svga_outl(short port, unsigned int value)
 {
     io_t iov;
-    
+
     iov.val = value;
     iov.port = port;
     ioctl(svgahelper_fd, SVGALIB_HELPER_IOCSOUTL, &iov);
@@ -119,30 +119,30 @@
 static __inline__ unsigned int svga_inb(short port)
 {
     io_t iov;
-    
+
     iov.port = port;
     ioctl(svgahelper_fd, SVGALIB_HELPER_IOCGINB, &iov);
-    
+
     return iov.val;
 }
 
 static __inline__ unsigned int svga_inw(short port)
 {
     io_t iov;
-    
+
     iov.port = port;
     ioctl(svgahelper_fd, SVGALIB_HELPER_IOCGINW, &iov);
-    
+
     return iov.val;
 }
 
 static __inline__ unsigned int svga_inl(short port)
 {
     io_t iov;
-    
+
     iov.port = port;
     ioctl(svgahelper_fd, SVGALIB_HELPER_IOCGINL, &iov);
-    
+
     return iov.val;
 }
 #endif /* CONIFG_SVGAHELPER */
@@ -161,7 +161,7 @@
     if (dhahelper_initialized == 1)
     {
 	dhahelper_port_t _port;
-	
+
 	_port.operation = PORT_OP_WRITE;
 	_port.addr = port;
 	_port.size = 1;
@@ -189,7 +189,7 @@
     if (dhahelper_initialized == 1)
     {
 	dhahelper_port_t _port;
-	
+
 	_port.operation = PORT_OP_WRITE;
 	_port.addr = port;
 	_port.size = 2;
@@ -217,7 +217,7 @@
     if (dhahelper_initialized == 1)
     {
 	dhahelper_port_t _port;
-	
+
 	_port.operation = PORT_OP_WRITE;
 	_port.addr = port;
 	_port.size = 4;
@@ -246,7 +246,7 @@
     if (dhahelper_initialized == 1)
     {
 	dhahelper_port_t _port;
-	
+
 	_port.operation = PORT_OP_READ;
 	_port.addr = port;
 	_port.size = 1;
@@ -276,7 +276,7 @@
     if (dhahelper_initialized == 1)
     {
 	dhahelper_port_t _port;
-	
+
 	_port.operation = PORT_OP_READ;
 	_port.addr = port;
 	_port.size = 2;
@@ -306,7 +306,7 @@
     if (dhahelper_initialized == 1)
     {
 	dhahelper_port_t _port;
-	
+
 	_port.operation = PORT_OP_READ;
 	_port.addr = port;
 	_port.size = 4;