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 @@
+#ifndef _PERF_ASM_UACCESS_H_
+#define _PERF_ASM_UACCESS_H_
+
+#define __get_user(src, dest) \
+({ \
+ (src) = *dest; \
+ 0; \
+})
+
+#define get_user __get_user
+
+#define access_ok(type, addr, size) 1
+
+#endif