Module Name:    src
Committed By:   msaitoh
Date:           Fri Jan 20 01:35:03 UTC 2023

Modified Files:
        src/sys/arch/x86/x86: intel_busclock.c
        src/sys/dev/pcmcia: mhzc.c

Log Message:
s/attemping/attempting/ in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/x86/x86/intel_busclock.c
cvs rdiff -u -r1.54 -r1.55 src/sys/dev/pcmcia/mhzc.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/intel_busclock.c
diff -u src/sys/arch/x86/x86/intel_busclock.c:1.25 src/sys/arch/x86/x86/intel_busclock.c:1.26
--- src/sys/arch/x86/x86/intel_busclock.c:1.25	Thu Oct  7 12:52:27 2021
+++ src/sys/arch/x86/x86/intel_busclock.c	Fri Jan 20 01:35:03 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: intel_busclock.c,v 1.25 2021/10/07 12:52:27 msaitoh Exp $	*/
+/*	$NetBSD: intel_busclock.c,v 1.26 2023/01/20 01:35:03 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intel_busclock.c,v 1.25 2021/10/07 12:52:27 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intel_busclock.c,v 1.26 2023/01/20 01:35:03 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -102,7 +102,7 @@ p3_get_bus_clock(struct cpu_info *ci)
 		break;
 	case 0xc: /* Core i7, Atom, model 1 */
 		/*
-		 * Newer CPUs will GP when attemping to access MSR_FSB_FREQ.
+		 * Newer CPUs will GP when attempting to access MSR_FSB_FREQ.
 		 * In the long-term, use ACPI instead of all this.
 		 */
 		if (rdmsr_safe(MSR_FSB_FREQ, &msr) == EFAULT) {

Index: src/sys/dev/pcmcia/mhzc.c
diff -u src/sys/dev/pcmcia/mhzc.c:1.54 src/sys/dev/pcmcia/mhzc.c:1.55
--- src/sys/dev/pcmcia/mhzc.c:1.54	Sat Aug  7 16:19:15 2021
+++ src/sys/dev/pcmcia/mhzc.c	Fri Jan 20 01:35:03 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: mhzc.c,v 1.54 2021/08/07 16:19:15 thorpej Exp $	*/
+/*	$NetBSD: mhzc.c,v 1.55 2023/01/20 01:35:03 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1999, 2000, 2004 The NetBSD Foundation, Inc.
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mhzc.c,v 1.54 2021/08/07 16:19:15 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mhzc.c,v 1.55 2023/01/20 01:35:03 msaitoh Exp $");
 
 #include "opt_inet.h"
 
@@ -201,7 +201,7 @@ mhzc_attach(device_t parent, device_t se
 	 * an address suitable for the Ethernet portion.  We do this by
 	 * rounding up to the next 16-byte aligned address where 0x80
 	 * isn't set (the SMC Ethernet chip has a 16-byte address size)
-	 * and attemping to allocate a 16-byte region until we succeed.
+	 * and attempting to allocate a 16-byte region until we succeed.
 	 *
 	 * Sure would have been nice if Megahertz had made the card a
 	 * proper multi-function device.

Reply via email to