Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
android_kernel_shift_sdm845
/
6f3814cd2fb5ea4d53a7fa5b0635d68fa4036c1b
/
.
/
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
++;
}