Fix obvious problem with emulate_fp sysctl.

Submitted by:	Paul Ambrose <ambrosehua@gmail.com>
This commit is contained in:
imp 2012-08-07 08:37:35 +00:00
parent 1187e5b624
commit 88f48c87a5

View File

@ -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);