repo.or.cz
/
drm
/
drm-misc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
drm/rockchip: vop2: Fix the windows switch between different layers
[drm/drm-misc.git]
/
arch
/
csky
/
kernel
/
probes
/
kprobes_trampoline.S
blob
ba48ad04a847e3a0d52e5830346f6fc1a98bfae3
1
/* SPDX-License-Identifier: GPL-2.0+ */
2
3
#include <linux/linkage.h>
4
5
#include <abi/entry.h>
6
7
ENTRY(__kretprobe_trampoline)
8
SAVE_REGS_FTRACE
9
10
mov a0, sp /* pt_regs */
11
12
jbsr trampoline_probe_handler
13
14
/* use the result as the return-address */
15
mov lr, a0
16
17
RESTORE_REGS_FTRACE
18
rts
19
ENDPROC(__kretprobe_trampoline)