summaryrefslogtreecommitdiffstats
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.h15
1 files changed, 15 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 000000000..548100315
--- /dev/null
+++ b/tools/perf/util/include/asm/uaccess.h
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#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(addr, size) 1
+
+#endif