aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/include/asm/uaccess.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/include/asm/uaccess.h')
-rw-r--r--tools/perf/util/include/asm/uaccess.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/perf/util/include/asm/uaccess.h b/tools/perf/util/include/asm/uaccess.h
new file mode 100644
index 000000000000..d0f72b8fcc35
--- /dev/null
+++ b/tools/perf/util/include/asm/uaccess.h
@@ -0,0 +1,14 @@
1#ifndef _PERF_ASM_UACCESS_H_
2#define _PERF_ASM_UACCESS_H_
3
4#define __get_user(src, dest) \
5({ \
6 (src) = *dest; \
7 0; \
8})
9
10#define get_user __get_user
11
12#define access_ok(type, addr, size) 1
13
14#endif