Source-Changes-HG archive

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

[src/trunk]: src/sys Fix 'unknown' spellos



details:   https://anonhg.NetBSD.org/src/rev/e285c154f87e
branches:  trunk
changeset: 452251:e285c154f87e
user:      skrll <skrll%NetBSD.org@localhost>
date:      Mon Jun 24 06:24:33 2019 +0000

description:
Fix 'unknown' spellos

diffstat:

 sys/dev/fdt/panel_fdt.c |  6 +++---
 sys/kern/kern_cctr.c    |  6 +++---
 sys/net/if.h            |  4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

diffs (72 lines):

diff -r 425d119dd07d -r e285c154f87e sys/dev/fdt/panel_fdt.c
--- a/sys/dev/fdt/panel_fdt.c   Mon Jun 24 04:42:06 2019 +0000
+++ b/sys/dev/fdt/panel_fdt.c   Mon Jun 24 06:24:33 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: panel_fdt.c,v 1.1 2018/04/03 12:40:20 bouyer Exp $     */
+/*     $NetBSD: panel_fdt.c,v 1.2 2019/06/24 06:24:33 skrll Exp $      */
 
 /*-
  * Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -39,7 +39,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(1, "$NetBSD: panel_fdt.c,v 1.1 2018/04/03 12:40:20 bouyer Exp $");
+__KERNEL_RCSID(1, "$NetBSD: panel_fdt.c,v 1.2 2019/06/24 06:24:33 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -136,7 +136,7 @@
                else if (strcmp(val, "vesa-24") == 0)
                        sc->sc_panel.panel_lvds_format = LVDS_VESA_24;
                else {
-                       aprint_error(": unkown data-mapping \"%s\"\n", val);
+                       aprint_error(": unknown data-mapping \"%s\"\n", val);
                        return;
                }
                break;
diff -r 425d119dd07d -r e285c154f87e sys/kern/kern_cctr.c
--- a/sys/kern/kern_cctr.c      Mon Jun 24 04:42:06 2019 +0000
+++ b/sys/kern/kern_cctr.c      Mon Jun 24 06:24:33 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_cctr.c,v 1.9 2009/01/03 03:31:23 yamt Exp $       */
+/*     $NetBSD: kern_cctr.c,v 1.10 2019/06/24 06:24:33 skrll Exp $     */
 
 /*-
  * Copyright (c) 2006, 2008 The NetBSD Foundation, Inc.
@@ -75,7 +75,7 @@
 
 #include <sys/cdefs.h>
 /* __FBSDID("$FreeBSD: src/sys/i386/i386/tsc.c,v 1.204 2003/10/21 18:28:34 silby Exp $"); */
-__KERNEL_RCSID(0, "$NetBSD: kern_cctr.c,v 1.9 2009/01/03 03:31:23 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_cctr.c,v 1.10 2019/06/24 06:24:33 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -100,7 +100,7 @@
        .tc_poll_pps            = cc_calibrate,
        .tc_counter_mask        = ~0u,
        .tc_frequency           = 0,
-       .tc_name                = "unkown cycle counter",
+       .tc_name                = "unknown cycle counter",
        /*
         * don't pick cycle counter automatically
         * if frequency changes might affect cycle counter
diff -r 425d119dd07d -r e285c154f87e sys/net/if.h
--- a/sys/net/if.h      Mon Jun 24 04:42:06 2019 +0000
+++ b/sys/net/if.h      Mon Jun 24 06:24:33 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if.h,v 1.272 2019/05/10 06:53:42 msaitoh Exp $ */
+/*     $NetBSD: if.h,v 1.273 2019/06/24 06:24:33 skrll Exp $   */
 
 /*-
  * Copyright (c) 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -244,7 +244,7 @@
  * a:  if_afdata_lock
  * 6:  in6_multilock (global lock)
  * ::  unlocked, stable
- * ?:  unkown, maybe unsafe
+ * ?:  unknown, maybe unsafe
  *
  * Lock order: IFNET_LOCK => in6_multilock => if_afdata_lock => ifq_lock
  *   Note that currently if_afdata_lock and ifq_lock aren't held



Home | Main Index | Thread Index | Old Index