Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_universal7904
/
2928c19e1086e2f1e90d05931437ab6f1e4cfdc8
/
.
/
drivers
/
char
/
rio
/
riopcicopy.c
blob: 2ea99a60aa326a899d9574c9d727b934be4e9482 [
file
] [
log
] [
blame
]
/* Yeah. We have copyright on this one. Sure. */
void
rio_pcicopy
(
char
*
from
,
char
*
to
,
int
amount
)
{
while
(
amount
--
)
*
to
++
=
*
from
++;
}