aboutsummaryrefslogtreecommitdiff
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 2ea99a60aa3..535afaa51ca 100644
--- a/drivers/char/rio/riopcicopy.c
+++ b/drivers/char/rio/riopcicopy.c
@@ -1,8 +1,8 @@
/* Yeah. We have copyright on this one. Sure. */
-void rio_pcicopy( char *from, char *to, int amount)
+void rio_pcicopy(char *from, char *to, int amount)
{
- while ( amount-- )
- *to++ = *from++;
+ while (amount--)
+ *to++ = *from++;
}