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