Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
mainline
/
linux
/
84542838a3829f34630c589c1eb570656c455a1c
/
.
/
drivers
/
char
/
rio
/
riopcicopy.c
blob: 535afaa51ca581274757b92f1000bf8e0ebc2ccf [
file
] [
log
] [
blame
]
/* Yeah. We have copyright on this one. Sure. */
void
rio_pcicopy
(
char
*
from
,
char
*
to
,
int
amount
)
{
while
(
amount
--)
*
to
++
=
*
from
++;
}