aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/rio/riopcicopy.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/rio/riopcicopy.c')
-rw-r--r--drivers/char/rio/riopcicopy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/rio/riopcicopy.c b/drivers/char/rio/riopcicopy.c
index 2ea99a60aa32..535afaa51ca5 100644
--- a/drivers/char/rio/riopcicopy.c
+++ b/drivers/char/rio/riopcicopy.c
@@ -1,8 +1,8 @@
1 1
2/* Yeah. We have copyright on this one. Sure. */ 2/* Yeah. We have copyright on this one. Sure. */
3 3
4void rio_pcicopy( char *from, char *to, int amount) 4void rio_pcicopy(char *from, char *to, int amount)
5{ 5{
6 while ( amount-- ) 6 while (amount--)
7 *to++ = *from++; 7 *to++ = *from++;
8} 8}