1COPY_TO_USER_FROMIO(9) Management of Cards and Device COPY_TO_USER_FROMIO(9)
2
3
4
6 copy_to_user_fromio - copy data from mmio-space to user-space
7
9 int copy_to_user_fromio(void __user * dst,
10 const volatile void __iomem * src,
11 size_t count);
12
14 dst
15 the destination pointer on user-space
16
17 src
18 the source pointer on mmio
19
20 count
21 the data size to copy in bytes
22
24 Copies the data from mmio-space to user-space.
25
26 Returns zero if successful, or non-zero on failure.
27
29Kernel Hackers Manual 2.6. November 2011 COPY_TO_USER_FROMIO(9)