Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
kernel
/
msm-4.9
/
fb120da678c517f72d4b39932062c2191827b331
/
.
/
drivers
/
char
/
rio
/
riopcicopy.c
blob: 2ea99a60aa326a899d9574c9d727b934be4e9482 [
file
] [
log
] [
blame
]
Linus Torvalds
1da177e
2005-04-16 15:20:36 -0700
[
diff
] [
blame
]
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
}