Module Name: src
Committed By: jmcneill
Date: Fri Oct 15 18:12:48 UTC 2021
Modified Files:
src/sys/arch/x86/x86: tsc.c
Log Message:
Fix typo in comment: "porniters" -> "pointers"
To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 src/sys/arch/x86/x86/tsc.c
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/x86/x86/tsc.c
diff -u src/sys/arch/x86/x86/tsc.c:1.56 src/sys/arch/x86/x86/tsc.c:1.57
--- src/sys/arch/x86/x86/tsc.c:1.56 Wed Jun 2 06:48:10 2021
+++ src/sys/arch/x86/x86/tsc.c Fri Oct 15 18:12:48 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: tsc.c,v 1.56 2021/06/02 06:48:10 nia Exp $ */
+/* $NetBSD: tsc.c,v 1.57 2021/10/15 18:12:48 jmcneill Exp $ */
/*-
* Copyright (c) 2008, 2020 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tsc.c,v 1.56 2021/06/02 06:48:10 nia Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tsc.c,v 1.57 2021/10/15 18:12:48 jmcneill Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -151,7 +151,7 @@ tsc_is_invariant(void)
return invariant;
}
-/* Setup function porniters for rdtsc() and timecounter(9). */
+/* Setup function pointers for rdtsc() and timecounter(9). */
void
tsc_setfunc(struct cpu_info *ci)
{