android_kernel_xiaomi_sm7250/drivers/char/rio/riopcicopy.c
Andrew Morton 8d8706e2f8 [PATCH] lindent rio drivers
Run all rio files through indent -kr -i8 -bri0 -l255, as requested by Alan.

rioboot.c and rioinit.c were skipped due to worrisome lindent warnings.

Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-01-11 18:42:14 -08:00

9 lines
143 B
C

/* Yeah. We have copyright on this one. Sure. */
void rio_pcicopy(char *from, char *to, int amount)
{
while (amount--)
*to++ = *from++;
}