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
10SYM_FUNC_START(__vdso_rt_sigreturn)
11	.cfi_startproc
12	.cfi_signal_frame
13	li a7, __NR_rt_sigreturn
14	ecall
15	.cfi_endproc
16SYM_FUNC_END(__vdso_rt_sigreturn)
17