Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_realme_mt6785
/
7e1048b11c5afe79aac46a42e3ccec86b8365c6d
/
.
/
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
++;
}