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 Correct a comment (or at least comment on...



details:   https://anonhg.NetBSD.org/src/rev/9ae82f9309ab
branches:  trunk
changeset: 934487:9ae82f9309ab
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sat Jun 13 14:45:17 2020 +0000

description:
Correct a comment (or at least comment on what we do instead of half of
what we do).

diffstat:

 sys/arch/mips/mips/mips_machdep.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r a4ce9aae2bee -r 9ae82f9309ab sys/arch/mips/mips/mips_machdep.c
--- a/sys/arch/mips/mips/mips_machdep.c Sat Jun 13 14:41:24 2020 +0000
+++ b/sys/arch/mips/mips/mips_machdep.c Sat Jun 13 14:45:17 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mips_machdep.c,v 1.286 2020/06/13 14:39:07 simonb Exp $        */
+/*     $NetBSD: mips_machdep.c,v 1.287 2020/06/13 14:45:17 simonb Exp $        */
 
 /*
  * Copyright 2002 Wasabi Systems, Inc.
@@ -111,7 +111,7 @@
  */
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.286 2020/06/13 14:39:07 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.287 2020/06/13 14:45:17 simonb Exp $");
 
 #define __INTR_PRIVATE
 #include "opt_cputype.h"
@@ -930,7 +930,7 @@
              mips32r2_intr_end - mips32r2_tlb_miss);
 
        /*
-        * Let see if this cpu has DSP V2 ASE...
+        * Let's see if this cpu has USERLOCAL or DSP V2 ASE...
         */
        uint32_t cp0flags = mips_options.mips_cpu->cpu_cp0flags;
        if (mipsNN_cp0_config2_read() & MIPSNN_CFG2_M) {
@@ -1076,7 +1076,7 @@
              mips64r2_intr_end - mips64r2_tlb_miss);
 
        /*
-        * Let see if this cpu has DSP V2 ASE...
+        * Let's see if this cpu has USERLOCAL or DSP V2 ASE...
         */
        uint32_t cp0flags = mips_options.mips_cpu->cpu_cp0flags;
        if (mipsNN_cp0_config2_read() & MIPSNN_CFG2_M) {



Home | Main Index | Thread Index | Old Index