riopcicopy.c 143 Bytes
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3

/* Yeah. We have copyright on this one. Sure. */

Andrew Morton's avatar
Andrew Morton committed
4
void rio_pcicopy(char *from, char *to, int amount)
Linus Torvalds's avatar
Linus Torvalds committed
5
{
Andrew Morton's avatar
Andrew Morton committed
6 7
	while (amount--)
		*to++ = *from++;
Linus Torvalds's avatar
Linus Torvalds committed
8
}