From b7e39c683aecfb2f7ff57fc95254a19150a9cc23 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Tue, 7 Aug 2012 08:37:35 +0000 Subject: [PATCH] Fix obvious problem with emulate_fp sysctl. Submitted by: Paul Ambrose --- sys/mips/mips/trap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/mips/mips/trap.c b/sys/mips/mips/trap.c index 27d3a481113..a60701dd09e 100644 --- a/sys/mips/mips/trap.c +++ b/sys/mips/mips/trap.c @@ -302,7 +302,7 @@ static int emulate_fp = 1; static int emulate_fp = 0; #endif SYSCTL_INT(_machdep, OID_AUTO, emulate_fp, CTLFLAG_RW, - &allow_unaligned_acc, 0, "Emulate unimplemented FPU instructions"); + &emulate_fp, 0, "Emulate unimplemented FPU instructions"); static int emulate_unaligned_access(struct trapframe *frame, int mode);