]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/char/rio/riopcicopy.c
Linux-2.6.12-rc2
[net-next-2.6.git] / drivers / char / rio / riopcicopy.c
1
2 /* Yeah. We have copyright on this one. Sure. */
3
4 void rio_pcicopy( char *from, char *to, int amount)
5 {
6   while ( amount-- )
7     *to++ = *from++;
8 }