1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (C) 2015 Imagination Technologies 4 * Author: Alex Smith <alex.smith@imgtec.com> 5 * Copyright (C) 2020 Loongson Technology Corporation Limited 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU General Public License as published by the 9 * Free Software Foundation; either version 2 of the License, or (at your 10 * option) any later version. 11 */ 12 13#include <asm/vdso/vdso.h> 14 15#include <linux/linkage.h> 16#include <uapi/asm/unistd.h> 17 18#include <asm/regdef.h> 19#include <asm/asm.h> 20 21 .section .text 22 .cfi_sections .debug_frame 23 24SYM_FUNC_START(__vdso_rt_sigreturn) 25 26 li.w a7, __NR_rt_sigreturn 27 syscall 0 28 29SYM_FUNC_END(__vdso_rt_sigreturn) 30