X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=arch%2Fm32r%2Fkernel%2Fio_usrv.c;h=27928a0b99edf875450bf196e39d7e5435c5ce18;hb=6a77f38946aaee1cd85eeec6cf4229b204c15071;hp=cc77ced9f8895df11ed8116ea6fd06135e475795;hpb=87fc8d1bb10cd459024a742c6a10961fefcef18f;p=linux-2.6.git diff --git a/arch/m32r/kernel/io_usrv.c b/arch/m32r/kernel/io_usrv.c index cc77ced9f..27928a0b9 100644 --- a/arch/m32r/kernel/io_usrv.c +++ b/arch/m32r/kernel/io_usrv.c @@ -178,7 +178,8 @@ 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; } } @@ -192,7 +193,8 @@ 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; } }