]> Git Repo - linux.git/blob - arch/riscv/kernel/vdso/rt_sigreturn.S
enetc: Migrate to PHYLINK and PCS_LYNX
[linux.git] / arch / riscv / kernel / vdso / rt_sigreturn.S
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2014 Regents of the University of California
4  */
5
6 #include <linux/linkage.h>
7 #include <asm/unistd.h>
8
9         .text
10 ENTRY(__vdso_rt_sigreturn)
11         .cfi_startproc
12         .cfi_signal_frame
13         li a7, __NR_rt_sigreturn
14         scall
15         .cfi_endproc
16 ENDPROC(__vdso_rt_sigreturn)
This page took 0.034911 seconds and 4 git commands to generate.