Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/tprof fix the typo that martin spotted.



details:   https://anonhg.NetBSD.org/src/rev/70c1f519d328
branches:  trunk
changeset: 1026614:70c1f519d328
user:      skrll <skrll%NetBSD.org@localhost>
date:      Fri Dec 03 10:54:19 2021 +0000

description:
fix the typo that martin spotted.

diffstat:

 sys/dev/tprof/tprof_armv8.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 8410be309eae -r 70c1f519d328 sys/dev/tprof/tprof_armv8.c
--- a/sys/dev/tprof/tprof_armv8.c       Fri Dec 03 10:49:25 2021 +0000
+++ b/sys/dev/tprof/tprof_armv8.c       Fri Dec 03 10:54:19 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tprof_armv8.c,v 1.12 2021/12/03 08:02:52 skrll Exp $ */
+/* $NetBSD: tprof_armv8.c,v 1.13 2021/12/03 10:54:19 skrll Exp $ */
 
 /*-
  * Copyright (c) 2018 Jared McNeill <jmcneill%invisible.ca@localhost>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tprof_armv8.c,v 1.12 2021/12/03 08:02:52 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tprof_armv8.c,v 1.13 2021/12/03 10:54:19 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -57,7 +57,7 @@
        eid[0] = reg_pmceid0_el0_read();
        eid[1] = reg_pmceid1_el0_read();
 
-       /* The low 32bits of PMCEID[01]_EL0 contain the commmon events 0 to n */
+       /* The low 32bits of PMCEID[01]_EL0 contain the common events 0 to n */
        const u_int idx = event / 32;
        const u_int bit = event % 32;
 



Home | Main Index | Thread Index | Old Index