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
mmc: bcm2835: Fix DMA channel leak on probe error
[linux/fpc-iii.git]
/
tools
/
perf
/
util
/
include
/
asm
/
uaccess.h
blob
6a6f4b990547ecebac9b64420ec4aed1e9dd970c
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef _PERF_ASM_UACCESS_H_
3
#define _PERF_ASM_UACCESS_H_
4
5
#define __get_user(src, dest) \
6
({ \
7
(src) = *dest; \
8
0; \
9
})
10
11
#define get_user __get_user
12
13
#define access_ok(type, addr, size) 1
14
15
#endif