This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / m32r / kernel / io_usrv.c
index 27928a0..cc77ced 100644 (file)
@@ -178,8 +178,7 @@ void _insb(unsigned int port, void * addr, unsigned long count)
        else {
                unsigned char *buf = addr;
                unsigned char *portp = PORT2ADDR(port);
-               while (count--)
-                       *buf++ = *(volatile unsigned char *)portp;
+               while(count--) *buf++ = *(volatile unsigned char *)portp;
        }
 }
 
@@ -193,8 +192,7 @@ void _insw(unsigned int port, void * addr, unsigned long count)
                        1);
        else {
                portp = PORT2ADDR(port);
-               while (count--)
-                       *buf++ = *(volatile unsigned short *)portp;
+               while (count--) *buf++ = *(volatile unsigned short *)portp;
        }
 }