Module Name:    src
Committed By:   andvar
Date:           Tue Feb 13 21:39:03 UTC 2024

Modified Files:
        src/sys/arch/atari/atari: machdep.c
        src/sys/arch/mmeye/dev: mmeyepcmcia.c
        src/sys/coda: coda_psdev.c
        src/sys/dev/ic: i82365.c tcic2.c

Log Message:
s/enqueing/enqueuing/ in debug messages (took a bait from recent Nick's commit)
s/occaision/occasion/ in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.189 -r1.190 src/sys/arch/atari/atari/machdep.c
cvs rdiff -u -r1.26 -r1.27 src/sys/arch/mmeye/dev/mmeyepcmcia.c
cvs rdiff -u -r1.63 -r1.64 src/sys/coda/coda_psdev.c
cvs rdiff -u -r1.118 -r1.119 src/sys/dev/ic/i82365.c
cvs rdiff -u -r1.41 -r1.42 src/sys/dev/ic/tcic2.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/atari/atari/machdep.c
diff -u src/sys/arch/atari/atari/machdep.c:1.189 src/sys/arch/atari/atari/machdep.c:1.190
--- src/sys/arch/atari/atari/machdep.c:1.189	Thu Dec  7 16:56:09 2023
+++ src/sys/arch/atari/atari/machdep.c	Tue Feb 13 21:39:02 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: machdep.c,v 1.189 2023/12/07 16:56:09 thorpej Exp $	*/
+/*	$NetBSD: machdep.c,v 1.190 2024/02/13 21:39:02 andvar Exp $	*/
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.189 2023/12/07 16:56:09 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.190 2024/02/13 21:39:02 andvar Exp $");
 
 #include "opt_ddb.h"
 #include "opt_compat_netbsd.h"
@@ -795,7 +795,7 @@ module_init_md(void)
  * Currently the only source of NMI interrupts on the Milan is the PLX9080.
  * On access errors to the PCI bus, an NMI is generated. This NMI is shorted
  * in locore in case of a PCI config cycle to a non-existing address to allow
- * for probes. On other occaisions, it ShouldNotHappen(TM).
+ * for probes. On other occasions, it ShouldNotHappen(TM).
  * Note: The handler in locore clears the errors, to make further PCI access
  * possible.
  */

Index: src/sys/arch/mmeye/dev/mmeyepcmcia.c
diff -u src/sys/arch/mmeye/dev/mmeyepcmcia.c:1.26 src/sys/arch/mmeye/dev/mmeyepcmcia.c:1.27
--- src/sys/arch/mmeye/dev/mmeyepcmcia.c:1.26	Fri Sep 29 21:23:33 2023
+++ src/sys/arch/mmeye/dev/mmeyepcmcia.c	Tue Feb 13 21:39:02 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: mmeyepcmcia.c,v 1.26 2023/09/29 21:23:33 andvar Exp $	*/
+/*	$NetBSD: mmeyepcmcia.c,v 1.27 2024/02/13 21:39:02 andvar Exp $	*/
 
 /*
  * Copyright (c) 1997 Marc Horowitz.  All rights reserved.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mmeyepcmcia.c,v 1.26 2023/09/29 21:23:33 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mmeyepcmcia.c,v 1.27 2024/02/13 21:39:02 andvar Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -550,7 +550,7 @@ mmeyepcmcia_intr_socket(struct mmeyepcmc
 		if ((statreg & MMEYEPCMCIA_IF_STATUS_CARDDETECT_MASK) ==
 		    MMEYEPCMCIA_IF_STATUS_CARDDETECT_PRESENT) {
 			if (h->laststate != MMEYEPCMCIA_LASTSTATE_PRESENT) {
-				DPRINTF(("%s: enqueing INSERTION event\n",
+				DPRINTF(("%s: enqueuing INSERTION event\n",
 						 device_xname(h->sc->dev)));
 				mmeyepcmcia_queue_event(h, MMEYEPCMCIA_EVENT_INSERTION);
 			}
@@ -562,7 +562,7 @@ mmeyepcmcia_intr_socket(struct mmeyepcmc
 						 device_xname(h->sc->dev)));
 				mmeyepcmcia_deactivate_card(h);
 
-				DPRINTF(("%s: enqueing REMOVAL event\n",
+				DPRINTF(("%s: enqueuing REMOVAL event\n",
 						 device_xname(h->sc->dev)));
 				mmeyepcmcia_queue_event(h, MMEYEPCMCIA_EVENT_REMOVAL);
 			}

Index: src/sys/coda/coda_psdev.c
diff -u src/sys/coda/coda_psdev.c:1.63 src/sys/coda/coda_psdev.c:1.64
--- src/sys/coda/coda_psdev.c:1.63	Thu Aug  3 03:10:23 2023
+++ src/sys/coda/coda_psdev.c	Tue Feb 13 21:39:02 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: coda_psdev.c,v 1.63 2023/08/03 03:10:23 rin Exp $	*/
+/*	$NetBSD: coda_psdev.c,v 1.64 2024/02/13 21:39:02 andvar Exp $	*/
 
 /*
  *
@@ -54,7 +54,7 @@
 /* These routines are the device entry points for Venus. */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: coda_psdev.c,v 1.63 2023/08/03 03:10:23 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: coda_psdev.c,v 1.64 2024/02/13 21:39:02 andvar Exp $");
 
 extern int coda_nc_initialized;    /* Set if cache has been initialized */
 
@@ -702,7 +702,7 @@ coda_call(struct coda_mntinfo *mntinfo, 
 /*??? rvb */	svmp->vm_outSize = sizeof (struct coda_in_hdr);
 
 		if (codadebug)
-		    myprintf(("coda_call: enqueing signal msg (%d, %d)\n",
+		    myprintf(("coda_call: enqueuing signal msg (%d, %d)\n",
 			   svmp->vm_opcode, svmp->vm_unique));
 
 		/* insert at head of queue */

Index: src/sys/dev/ic/i82365.c
diff -u src/sys/dev/ic/i82365.c:1.118 src/sys/dev/ic/i82365.c:1.119
--- src/sys/dev/ic/i82365.c:1.118	Sat Aug  7 16:19:12 2021
+++ src/sys/dev/ic/i82365.c	Tue Feb 13 21:39:02 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: i82365.c,v 1.118 2021/08/07 16:19:12 thorpej Exp $	*/
+/*	$NetBSD: i82365.c,v 1.119 2024/02/13 21:39:02 andvar Exp $	*/
 
 /*
  * Copyright (c) 2004 Charles M. Hannum.  All rights reserved.
@@ -49,7 +49,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: i82365.c,v 1.118 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: i82365.c,v 1.119 2024/02/13 21:39:02 andvar Exp $");
 
 #define	PCICDEBUG
 
@@ -697,7 +697,7 @@ pcic_intr_socket(struct pcic_handle *h)
 		if ((statreg & PCIC_IF_STATUS_CARDDETECT_MASK) ==
 		    PCIC_IF_STATUS_CARDDETECT_PRESENT) {
 			if (h->laststate != PCIC_LASTSTATE_PRESENT) {
-				DPRINTF(("%s: enqueing INSERTION event\n",
+				DPRINTF(("%s: enqueuing INSERTION event\n",
 				    device_xname(h->ph_parent)));
 				pcic_queue_event(h, PCIC_EVENT_INSERTION);
 			}
@@ -709,7 +709,7 @@ pcic_intr_socket(struct pcic_handle *h)
 				    device_xname(h->ph_parent)));
 				pcic_deactivate_card(h);
 
-				DPRINTF(("%s: enqueing REMOVAL event\n",
+				DPRINTF(("%s: enqueuing REMOVAL event\n",
 				    device_xname(h->ph_parent)));
 				pcic_queue_event(h, PCIC_EVENT_REMOVAL);
 			}

Index: src/sys/dev/ic/tcic2.c
diff -u src/sys/dev/ic/tcic2.c:1.41 src/sys/dev/ic/tcic2.c:1.42
--- src/sys/dev/ic/tcic2.c:1.41	Sat Aug  7 16:19:12 2021
+++ src/sys/dev/ic/tcic2.c	Tue Feb 13 21:39:02 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: tcic2.c,v 1.41 2021/08/07 16:19:12 thorpej Exp $	*/
+/*	$NetBSD: tcic2.c,v 1.42 2024/02/13 21:39:02 andvar Exp $	*/
 
 /*
  * Copyright (c) 1998, 1999 Christoph Badura.  All rights reserved.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tcic2.c,v 1.41 2021/08/07 16:19:12 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcic2.c,v 1.42 2024/02/13 21:39:02 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -593,7 +593,7 @@ tcic_intr_socket(struct tcic_handle *h)
 		if (delta & TCIC_SSTAT_CD) {
 			if (sstat & TCIC_SSTAT_CD) {
 				if (!(h->flags & TCIC_FLAG_CARDP)) {
-					DPRINTF(("%s: enqueing INSERTION event\n",
+					DPRINTF(("%s: enqueuing INSERTION event\n",
 					    device_xname(h->sc->sc_dev)));
 					tcic_queue_event(h, TCIC_EVENT_INSERTION);
 				}
@@ -604,7 +604,7 @@ tcic_intr_socket(struct tcic_handle *h)
 					    device_xname(h->sc->sc_dev)));
 					tcic_deactivate_card(h);
 
-					DPRINTF(("%s: enqueing REMOVAL event\n",
+					DPRINTF(("%s: enqueuing REMOVAL event\n",
 					    device_xname(h->sc->sc_dev)));
 					tcic_queue_event(h, TCIC_EVENT_REMOVAL);
 				}

Reply via email to