8d8706e2f8
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>
9 lines
143 B
C
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++;
|
|
}
|