Skip to content

Commit 775e4db

Browse files
Maciej W. Rozyckigregkh
authored andcommitted
MIPS: Fix a typo: s/preset/present/ in r2-to-r6 emulation error message
commit 27fe2200dad2de8207a694024a7b9037dff1b280 upstream. This is a user-visible message, so we want it to be spelled correctly. Fixes: 5f9f41c ("MIPS: kernel: Prepare the JR instruction for emulation on MIPS R6") Signed-off-by: Maciej W. Rozycki <macro@imgtec.com> Cc: James Hogan <james.hogan@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/16400/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent f28e32a commit 775e4db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/mips/kernel/branch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@ int __compute_return_epc_for_insn(struct pt_regs *regs,
845845
force_sig(SIGILL, current);
846846
return -EFAULT;
847847
sigill_r2r6:
848-
pr_info("%s: R2 branch but r2-to-r6 emulator is not preset - sending SIGILL.\n",
848+
pr_info("%s: R2 branch but r2-to-r6 emulator is not present - sending SIGILL.\n",
849849
current->comm);
850850
force_sig(SIGILL, current);
851851
return -EFAULT;

0 commit comments

Comments
 (0)