You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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
|
|
|