blob: 535afaa51ca581274757b92f1000bf8e0ebc2ccf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/* Yeah. We have copyright on this one. Sure. */
3
Andrew Morton8d8706e2006-01-11 12:17:49 -08004void rio_pcicopy(char *from, char *to, int amount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005{
Andrew Morton8d8706e2006-01-11 12:17:49 -08006 while (amount--)
7 *to++ = *from++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008}