Module Name:    src
Committed By:   andvar
Date:           Fri Feb  2 22:14:05 UTC 2024

Modified Files:
        src/share/examples/secmodel: secmodel_example.c
        src/sys/arch/arm/sunxi: sunxi_debe.c
        src/sys/arch/arm/ti: ti_motg.c
        src/sys/arch/evbmips/loongson/dev: gcscpcib_pci.c
        src/sys/arch/i386/pci: gcscpcib_pci.c
        src/sys/dev/acpi: igpio_acpi.c

Log Message:
s/attachement/attachment/ and s/detachement/detachment/.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/share/examples/secmodel/secmodel_example.c
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/arm/sunxi/sunxi_debe.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/arm/ti/ti_motg.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbmips/loongson/dev/gcscpcib_pci.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/i386/pci/gcscpcib_pci.c
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/acpi/igpio_acpi.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/examples/secmodel/secmodel_example.c
diff -u src/share/examples/secmodel/secmodel_example.c:1.29 src/share/examples/secmodel/secmodel_example.c:1.30
--- src/share/examples/secmodel/secmodel_example.c:1.29	Thu Jan  5 17:36:53 2023
+++ src/share/examples/secmodel/secmodel_example.c	Fri Feb  2 22:14:04 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: secmodel_example.c,v 1.29 2023/01/05 17:36:53 jakllsch Exp $ */
+/* $NetBSD: secmodel_example.c,v 1.30 2024/02/02 22:14:04 andvar Exp $ */
 
 /*
  * This file is placed in the public domain.
@@ -13,7 +13,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: secmodel_example.c,v 1.29 2023/01/05 17:36:53 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: secmodel_example.c,v 1.30 2024/02/02 22:14:04 andvar Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -160,7 +160,7 @@ secmodel_example_eval(const char *what, 
 }
 
 /*
- * Module attachement/detachement routine. Whether the secmodel(9) is
+ * Module attachment/detachment routine. Whether the secmodel(9) is
  * builtin or loaded dynamically, it is in charge of initializing, starting
  * and stopping the module. See module(9).
  */

Index: src/sys/arch/arm/sunxi/sunxi_debe.c
diff -u src/sys/arch/arm/sunxi/sunxi_debe.c:1.16 src/sys/arch/arm/sunxi/sunxi_debe.c:1.17
--- src/sys/arch/arm/sunxi/sunxi_debe.c:1.16	Sat Jan  1 13:47:19 2022
+++ src/sys/arch/arm/sunxi/sunxi_debe.c	Fri Feb  2 22:14:04 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: sunxi_debe.c,v 1.16 2022/01/01 13:47:19 andvar Exp $ */
+/* $NetBSD: sunxi_debe.c,v 1.17 2024/02/02 22:14:04 andvar Exp $ */
 
 /*-
  * Copyright (c) 2018 Manuel Bouyer <bou...@antioche.eu.org>
@@ -38,7 +38,7 @@
 #define SUNXI_DEBE_CURMAX	64
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunxi_debe.c,v 1.16 2022/01/01 13:47:19 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunxi_debe.c,v 1.17 2024/02/02 22:14:04 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -704,7 +704,7 @@ sunxi_debe_ioctl(device_t self, u_long c
 	return EPASSTHROUGH;
 }
 
-/* genfb attachement */
+/* genfb attachment */
 
 struct sunxi_befb_softc {
 	struct genfb_softc sc_gen;

Index: src/sys/arch/arm/ti/ti_motg.c
diff -u src/sys/arch/arm/ti/ti_motg.c:1.4 src/sys/arch/arm/ti/ti_motg.c:1.5
--- src/sys/arch/arm/ti/ti_motg.c:1.4	Wed Jan 27 03:10:20 2021
+++ src/sys/arch/arm/ti/ti_motg.c	Fri Feb  2 22:14:04 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: ti_motg.c,v 1.4 2021/01/27 03:10:20 thorpej Exp $ */
+/* $NetBSD: ti_motg.c,v 1.5 2024/02/02 22:14:04 andvar Exp $ */
 /*
  * Copyright (c) 2013 Manuel Bouyer.  All rights reserved.
  *
@@ -24,7 +24,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ti_motg.c,v 1.4 2021/01/27 03:10:20 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ti_motg.c,v 1.5 2024/02/02 22:14:04 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -67,7 +67,7 @@ static const struct device_compatible_en
 };
 
 /*
- * motg device attachement and driver,
+ * motg device attachment and driver,
  * for the per-port part of the controller: TI-specific part, phy and
  * MI Mentor OTG.
  */

Index: src/sys/arch/evbmips/loongson/dev/gcscpcib_pci.c
diff -u src/sys/arch/evbmips/loongson/dev/gcscpcib_pci.c:1.2 src/sys/arch/evbmips/loongson/dev/gcscpcib_pci.c:1.3
--- src/sys/arch/evbmips/loongson/dev/gcscpcib_pci.c:1.2	Mon Aug 29 18:34:42 2011
+++ src/sys/arch/evbmips/loongson/dev/gcscpcib_pci.c	Fri Feb  2 22:14:04 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: gcscpcib_pci.c,v 1.2 2011/08/29 18:34:42 bouyer Exp $ */
+/* $NetBSD: gcscpcib_pci.c,v 1.3 2024/02/02 22:14:04 andvar Exp $ */
 /* $OpenBSD: gcscpcib.c,v 1.6 2007/11/17 17:02:47 mbalmer Exp $	*/
 
 /*
@@ -22,10 +22,10 @@
 
 /*
  * AMD CS5535/CS5536 series LPC bridge also containing timer, watchdog and GPIO.
- * machine-dependent attachement.
+ * machine-dependent attachment.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gcscpcib_pci.c,v 1.2 2011/08/29 18:34:42 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gcscpcib_pci.c,v 1.3 2024/02/02 22:14:04 andvar Exp $");
 
 
 #include <sys/param.h>

Index: src/sys/arch/i386/pci/gcscpcib_pci.c
diff -u src/sys/arch/i386/pci/gcscpcib_pci.c:1.2 src/sys/arch/i386/pci/gcscpcib_pci.c:1.3
--- src/sys/arch/i386/pci/gcscpcib_pci.c:1.2	Mon Aug 29 18:34:42 2011
+++ src/sys/arch/i386/pci/gcscpcib_pci.c	Fri Feb  2 22:14:04 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: gcscpcib_pci.c,v 1.2 2011/08/29 18:34:42 bouyer Exp $ */
+/* $NetBSD: gcscpcib_pci.c,v 1.3 2024/02/02 22:14:04 andvar Exp $ */
 /* $OpenBSD: gcscpcib.c,v 1.6 2007/11/17 17:02:47 mbalmer Exp $	*/
 
 /*
@@ -22,10 +22,10 @@
 
 /*
  * AMD CS5535/CS5536 series LPC bridge also containing timer, watchdog and GPIO.
- * machine-dependent attachement.
+ * machine-dependent attachment.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gcscpcib_pci.c,v 1.2 2011/08/29 18:34:42 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gcscpcib_pci.c,v 1.3 2024/02/02 22:14:04 andvar Exp $");
 
 
 #include <sys/param.h>

Index: src/sys/dev/acpi/igpio_acpi.c
diff -u src/sys/dev/acpi/igpio_acpi.c:1.2 src/sys/dev/acpi/igpio_acpi.c:1.3
--- src/sys/dev/acpi/igpio_acpi.c:1.2	Mon Feb 27 15:41:41 2023
+++ src/sys/dev/acpi/igpio_acpi.c	Fri Feb  2 22:14:05 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: igpio_acpi.c,v 1.2 2023/02/27 15:41:41 msaitoh Exp $ */
+/* $NetBSD: igpio_acpi.c,v 1.3 2024/02/02 22:14:05 andvar Exp $ */
 
 /*-
  * Copyright (c) 2021,2022 Emmanuel Dreyfus
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: igpio_acpi.c,v 1.2 2023/02/27 15:41:41 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: igpio_acpi.c,v 1.3 2024/02/02 22:14:05 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/kmem.h>
@@ -159,7 +159,7 @@ igpio_acpi_attach(device_t parent, devic
 
 	igpio_attach(&asc->sc_isc);
 	
-	/* If attachement failed */
+	/* If attachment failed */
 	if (asc->sc_isc.sc_banks == NULL) {
 		igpio_acpi_detach(self, 0);
 		goto done;

Reply via email to