repo.or.cz
/
linux-2.6
/
mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PATCH] gfp_t: drivers/scsi
[linux-2.6/mini2440.git]
/
drivers
/
char
/
rio
/
riopcicopy.c
blob
2ea99a60aa326a899d9574c9d727b934be4e9482
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
}