]> Git Repo - linux.git/blob - tools/perf/util/include/asm/uaccess.h
KVM: x86: fix CPUID entries returned by KVM_GET_CPUID2 ioctl
[linux.git] / tools / perf / util / include / asm / uaccess.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _PERF_ASM_UACCESS_H_
3 #define _PERF_ASM_UACCESS_H_
4
5 #define __get_user(src, dest)                                           \
6 ({                                                                      \
7         (src) = *dest;                                                  \
8         0;                                                              \
9 })
10
11 #define get_user        __get_user
12
13 #define access_ok(addr, size)   1
14
15 #endif
This page took 0.035005 seconds and 4 git commands to generate.