repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bcma: claim only 14e4:4365 PCI Dell card with SoftMAC BCM43142
[linux/fpc-iii.git]
/
tools
/
perf
/
util
/
include
/
asm
/
uaccess.h
blob
d0f72b8fcc355b550fa9bb4091fc6fba27644ef3
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