Lines Matching +full:user +full:- +full:defined
1 // SPDX-License-Identifier: GPL-2.0-or-later
15 * copy_to_user_fromio - copy data from mmio-space to user-space
16 * @dst: the destination pointer on user-space
20 * Copies the data from mmio-space to user-space.
22 * Return: Zero if successful, or non-zero on failure.
29 return -EFAULT;
31 return -EFAULT;
37 * copy_to_iter_fromio - copy data from mmio-space to iov_iter
42 * Copies the data from mmio-space to iov_iter.
49 #if defined(__i386__) || defined(CONFIG_SPARC32)
62 count -= c;
72 * copy_from_user_toio - copy data from user-space to mmio-space
73 * @dst: the destination pointer on mmio-space
74 * @src: the source pointer on user-space
77 * Copies the data from user-space to mmio-space.
79 * Return: Zero if successful, or non-zero on failure.
86 return -EFAULT;
88 return -EFAULT;
94 * copy_from_iter_toio - copy data from iov_iter to mmio-space
95 * @dst: the destination pointer on mmio-space
99 * Copies the data from iov_iter to mmio-space.
106 #if defined(__i386__) || defined(CONFIG_SPARC32)
119 count -= c;