xref: /linux/arch/riscv/lib/error-inject.c (revision aad94ba683adc6ff7ff4e29ae48184b42782dd97)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/error-injection.h>
4 #include <linux/kprobes.h>
5 
6 void override_function_with_return(struct pt_regs *regs)
7 {
8 	instruction_pointer_set(regs, regs->ra);
9 }
10 NOKPROBE_SYMBOL(override_function_with_return);
11