Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/mips/mips Fix typo



details:   https://anonhg.NetBSD.org/src/rev/30f58e1fdee0
branches:  trunk
changeset: 783509:30f58e1fdee0
user:      matt <matt%NetBSD.org@localhost>
date:      Wed Dec 26 19:15:16 2012 +0000

description:
Fix typo

diffstat:

 sys/arch/mips/mips/mips_fpu.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r e0413016e973 -r 30f58e1fdee0 sys/arch/mips/mips/mips_fpu.c
--- a/sys/arch/mips/mips/mips_fpu.c     Wed Dec 26 19:13:19 2012 +0000
+++ b/sys/arch/mips/mips/mips_fpu.c     Wed Dec 26 19:15:16 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mips_fpu.c,v 1.9 2012/12/26 19:09:07 matt Exp $        */
+/*     $NetBSD: mips_fpu.c,v 1.10 2012/12/26 19:15:16 matt Exp $       */
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mips_fpu.c,v 1.9 2012/12/26 19:09:07 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mips_fpu.c,v 1.10 2012/12/26 19:15:16 matt Exp $");
 
 #include "opt_multiprocessor.h"
 
@@ -218,7 +218,7 @@
        /*
         * If this is the first time the state is being loaded, zero it first.
         */
-       if (__predict_false(!(flags & PCU_LOADED) == 0)) {
+       if (__predict_false((flags & PCU_LOADED) == 0)) {
                memset(&pcb->pcb_fpregs, 0, sizeof(pcb->pcb_fpregs));
        }
 



Home | Main Index | Thread Index | Old Index