Module Name: src
Committed By: skrll
Date: Tue Jun 30 13:30:51 UTC 2015
Modified Files:
src/sys/arch/mips/mips: locore_mips3.S
Log Message:
Fix logic inversion in 1.107
To generate a diff of this commit:
cvs rdiff -u -r1.110 -r1.111 src/sys/arch/mips/mips/locore_mips3.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/mips/mips/locore_mips3.S
diff -u src/sys/arch/mips/mips/locore_mips3.S:1.110 src/sys/arch/mips/mips/locore_mips3.S:1.111
--- src/sys/arch/mips/mips/locore_mips3.S:1.110 Tue Jun 16 18:12:18 2015
+++ src/sys/arch/mips/mips/locore_mips3.S Tue Jun 30 13:30:50 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: locore_mips3.S,v 1.110 2015/06/16 18:12:18 macallan Exp $ */
+/* $NetBSD: locore_mips3.S,v 1.111 2015/06/30 13:30:50 skrll Exp $ */
/*
* Copyright (c) 1997 Jonathan Stone (hereinafter referred to as the author)
@@ -206,7 +206,7 @@ LEAF(mips_wait_idle)
#if __mips >= 32
teqi v1, 0
#else
- bnez v1, 2b
+ beqz v1, 1b
nop
#endif
jr ra