Module Name:    src
Committed By:   jmcneill
Date:           Sun Dec  6 12:47:12 UTC 2020

Modified Files:
        src/sys/dev/acpi: acpi_mcfg.c

Log Message:
Fix typo in comment


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/dev/acpi/acpi_mcfg.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/dev/acpi/acpi_mcfg.c
diff -u src/sys/dev/acpi/acpi_mcfg.c:1.20 src/sys/dev/acpi/acpi_mcfg.c:1.21
--- src/sys/dev/acpi/acpi_mcfg.c:1.20	Tue Jul  7 03:38:48 2020
+++ src/sys/dev/acpi/acpi_mcfg.c	Sun Dec  6 12:47:12 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: acpi_mcfg.c,v 1.20 2020/07/07 03:38:48 thorpej Exp $	*/
+/*	$NetBSD: acpi_mcfg.c,v 1.21 2020/12/06 12:47:12 jmcneill Exp $	*/
 
 /*-
  * Copyright (C) 2015 NONAKA Kimihiro <non...@netbsd.org>
@@ -28,7 +28,7 @@
 #include "opt_pci.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi_mcfg.c,v 1.20 2020/07/07 03:38:48 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_mcfg.c,v 1.21 2020/12/06 12:47:12 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -576,7 +576,7 @@ acpimcfg_map_bus(device_t self, pci_chip
 	mb = &seg->ms_bus[boff];
 	baddr = seg->ms_address + (bus * ACPIMCFG_SIZE_PER_BUS);
 
-	/* Map extended configration space of all dev/func. */
+	/* Map extended configuration space of all dev/func. */
 	error = bus_space_map(seg->ms_bst, baddr, ACPIMCFG_SIZE_PER_BUS, 0,
 	    &bsh);
 	if (error != 0)
@@ -797,7 +797,7 @@ acpimcfg_configure_bus(device_t self, pc
 		mb = &seg->ms_bus[boff];
 		baddr = seg->ms_address + (b * ACPIMCFG_SIZE_PER_BUS);
 
-		/* Map extended configration space of all dev/func. */
+		/* Map extended configuration space of all dev/func. */
 		error = bus_space_map(seg->ms_bst, baddr, ACPIMCFG_SIZE_PER_BUS, 0,
 		    &bsh[b]);
 		if (error != 0)

Reply via email to