Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / tools / perf / util / include / asm / uaccess.h
blobd0f72b8fcc355b550fa9bb4091fc6fba27644ef3
1 #ifndef _PERF_ASM_UACCESS_H_
2 #define _PERF_ASM_UACCESS_H_
4 #define __get_user(src, dest) \
5 ({ \
6 (src) = *dest; \
7 0; \
8 })
10 #define get_user __get_user
12 #define access_ok(type, addr, size) 1
14 #endif