Module Name: src Committed By: andvar Date: Sun Sep 19 10:34:10 UTC 2021
Modified Files: src/common/lib/libc/misc: ubsan.c src/games/rogue: CHANGES src/sbin/newfs_udf: newfs_udf.c src/sys/arch/acorn32/podulebus: if_ie.c src/sys/arch/alpha/alpha: pmap.c src/sys/arch/amiga/dev: view.c viewioctl.h viewvar.h src/sys/arch/arc/arc: c_nec_pci.c src/sys/arch/arm/broadcom: bcm53xx_var.h src/sys/arch/arm/gemini: obio_wdc.c src/sys/arch/arm/iomd: vidc20config.c src/sys/arch/arm/samsung: exynos_soc.c src/sys/arch/arm/xscale: ixp425-fw.README ixp425_if_npe.c src/sys/arch/atari/dev: view.c viewioctl.h viewvar.h src/sys/arch/m68k/include: pmap_motorola.h src/sys/arch/mips/mips: locore_mips1.S src/sys/arch/powerpc/include/booke: etsecreg.h src/sys/dev/ic: isp.c src/sys/dev/microcode/aic7xxx: aic79xx.seq aicasm_gram.y src/sys/dev/pci/ixgbe: ixgbe.h src/sys/dev/scsipi: if_se.c src/sys/net80211: ieee80211_node.c src/sys/netinet: sctp_input.c sctp_pcb.c src/tests/fs/puffs/h_dtfs: dtfs_vfsops.c src/tests/kernel: t_kauth_pr_47598.c src/usr.sbin/acpitools/acpidump: acpi.c Log Message: fix various typos in comments, messages and documentation. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/common/lib/libc/misc/ubsan.c cvs rdiff -u -r1.3 -r1.4 src/games/rogue/CHANGES cvs rdiff -u -r1.21 -r1.22 src/sbin/newfs_udf/newfs_udf.c cvs rdiff -u -r1.49 -r1.50 src/sys/arch/acorn32/podulebus/if_ie.c cvs rdiff -u -r1.301 -r1.302 src/sys/arch/alpha/alpha/pmap.c cvs rdiff -u -r1.33 -r1.34 src/sys/arch/amiga/dev/view.c cvs rdiff -u -r1.10 -r1.11 src/sys/arch/amiga/dev/viewioctl.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/amiga/dev/viewvar.h cvs rdiff -u -r1.20 -r1.21 src/sys/arch/arc/arc/c_nec_pci.c cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/broadcom/bcm53xx_var.h cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/gemini/obio_wdc.c cvs rdiff -u -r1.34 -r1.35 src/sys/arch/arm/iomd/vidc20config.c cvs rdiff -u -r1.39 -r1.40 src/sys/arch/arm/samsung/exynos_soc.c cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/xscale/ixp425-fw.README cvs rdiff -u -r1.47 -r1.48 src/sys/arch/arm/xscale/ixp425_if_npe.c cvs rdiff -u -r1.35 -r1.36 src/sys/arch/atari/dev/view.c cvs rdiff -u -r1.2 -r1.3 src/sys/arch/atari/dev/viewioctl.h cvs rdiff -u -r1.7 -r1.8 src/sys/arch/atari/dev/viewvar.h cvs rdiff -u -r1.36 -r1.37 src/sys/arch/m68k/include/pmap_motorola.h cvs rdiff -u -r1.95 -r1.96 src/sys/arch/mips/mips/locore_mips1.S cvs rdiff -u -r1.8 -r1.9 src/sys/arch/powerpc/include/booke/etsecreg.h cvs rdiff -u -r1.129 -r1.130 src/sys/dev/ic/isp.c cvs rdiff -u -r1.14 -r1.15 src/sys/dev/microcode/aic7xxx/aic79xx.seq cvs rdiff -u -r1.7 -r1.8 src/sys/dev/microcode/aic7xxx/aicasm_gram.y cvs rdiff -u -r1.81 -r1.82 src/sys/dev/pci/ixgbe/ixgbe.h cvs rdiff -u -r1.113 -r1.114 src/sys/dev/scsipi/if_se.c cvs rdiff -u -r1.81 -r1.82 src/sys/net80211/ieee80211_node.c cvs rdiff -u -r1.14 -r1.15 src/sys/netinet/sctp_input.c cvs rdiff -u -r1.21 -r1.22 src/sys/netinet/sctp_pcb.c cvs rdiff -u -r1.4 -r1.5 src/tests/fs/puffs/h_dtfs/dtfs_vfsops.c cvs rdiff -u -r1.4 -r1.5 src/tests/kernel/t_kauth_pr_47598.c cvs rdiff -u -r1.51 -r1.52 src/usr.sbin/acpitools/acpidump/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/common/lib/libc/misc/ubsan.c diff -u src/common/lib/libc/misc/ubsan.c:1.10 src/common/lib/libc/misc/ubsan.c:1.11 --- src/common/lib/libc/misc/ubsan.c:1.10 Sun Mar 8 21:35:03 2020 +++ src/common/lib/libc/misc/ubsan.c Sun Sep 19 10:34:06 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: ubsan.c,v 1.10 2020/03/08 21:35:03 kamil Exp $ */ +/* $NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $ */ /*- * Copyright (c) 2018 The NetBSD Foundation, Inc. @@ -38,9 +38,9 @@ #include <sys/cdefs.h> #if defined(_KERNEL) -__KERNEL_RCSID(0, "$NetBSD: ubsan.c,v 1.10 2020/03/08 21:35:03 kamil Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $"); #else -__RCSID("$NetBSD: ubsan.c,v 1.10 2020/03/08 21:35:03 kamil Exp $"); +__RCSID("$NetBSD: ubsan.c,v 1.11 2021/09/19 10:34:06 andvar Exp $"); #endif #if defined(_KERNEL) @@ -744,7 +744,7 @@ HandleAlignmentAssumption(bool isFatal, if (pData->mAssumptionLocation.mFilename != NULL) { DeserializeLocation(szAssumptionLocation, LOCATION_MAXLEN, &pData->mAssumptionLocation); - Report(isFatal, "UBSan: Undefined Behavior in %s, alignment assumption of %#lx for pointer %#lx (offset %#lx), asumption made in %s\n", + Report(isFatal, "UBSan: Undefined Behavior in %s, alignment assumption of %#lx for pointer %#lx (offset %#lx), assumption made in %s\n", szLocation, ulAlignment, ulRealPointer, ulOffset, szAssumptionLocation); } else { Index: src/games/rogue/CHANGES diff -u src/games/rogue/CHANGES:1.3 src/games/rogue/CHANGES:1.4 --- src/games/rogue/CHANGES:1.3 Mon Mar 13 22:53:22 2000 +++ src/games/rogue/CHANGES Sun Sep 19 10:34:07 2021 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.3 2000/03/13 22:53:22 soren Exp $ +$NetBSD: CHANGES,v 1.4 2021/09/19 10:34:07 andvar Exp $ From: tektronix!zeus.TEK.COM!t...@ucbvax.berkeley.edu Date: 30 Nov 87 15:08:15 PST (Mon) @@ -6,7 +6,7 @@ To: okeeffe.Berkeley.EDU!mckusick@u Subject: Re: Public domain rogue Return-Path: tektronix!zeus.TEK.COM!t...@ucbvax.berkeley.edu -Here is a list of discrepencies from the documentation you sent me: +Here is a list of discrepancies from the documentation you sent me: The -d option not implemented. The -r option not implemented, use "rogue save_file" instead. @@ -14,7 +14,7 @@ Strength is between 1 and 99, not 3 and The D command is not implemented. Only scrolls,potions,wands,and rings may be "call"ed something. The ^P command may be used to go 4 messages back, instead of just 1. -The @ comand is not implemented. +The @ command is not implemented. There are no dark rooms. ROGUEOPTS of flush,terse,seefloor,askme,inventory are ignored. 'askquit' is added to prevent ^\ from terminating the game accidentally. Index: src/sbin/newfs_udf/newfs_udf.c diff -u src/sbin/newfs_udf/newfs_udf.c:1.21 src/sbin/newfs_udf/newfs_udf.c:1.22 --- src/sbin/newfs_udf/newfs_udf.c:1.21 Fri Aug 20 20:25:26 2021 +++ src/sbin/newfs_udf/newfs_udf.c Sun Sep 19 10:34:07 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: newfs_udf.c,v 1.21 2021/08/20 20:25:26 andvar Exp $ */ +/* $NetBSD: newfs_udf.c,v 1.22 2021/09/19 10:34:07 andvar Exp $ */ /* * Copyright (c) 2006, 2008, 2013 Reinoud Zandijk @@ -759,7 +759,7 @@ main(int argc, char **argv) emul_packetsize = MIN(emul_packetsize, 32); break; case 't' : - /* time zone overide */ + /* time zone override */ context.gmtoff = a_num(optarg, "gmtoff"); break; default : Index: src/sys/arch/acorn32/podulebus/if_ie.c diff -u src/sys/arch/acorn32/podulebus/if_ie.c:1.49 src/sys/arch/acorn32/podulebus/if_ie.c:1.50 --- src/sys/arch/acorn32/podulebus/if_ie.c:1.49 Sat Jul 24 22:30:59 2021 +++ src/sys/arch/acorn32/podulebus/if_ie.c Sun Sep 19 10:34:07 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: if_ie.c,v 1.49 2021/07/24 22:30:59 andvar Exp $ */ +/* $NetBSD: if_ie.c,v 1.50 2021/09/19 10:34:07 andvar Exp $ */ /* * Copyright (c) 1995 Melvin Tang-Richardson. @@ -53,7 +53,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_ie.c,v 1.49 2021/07/24 22:30:59 andvar Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_ie.c,v 1.50 2021/09/19 10:34:07 andvar Exp $"); #define IGNORE_ETHER1_IDROM_CHECKSUM @@ -456,7 +456,7 @@ ieattach(device_t parent, device_t self, /* "Hmm," said nuts, "what if the attach fails" */ - /* Write some pretty things on the annoucement line */ + /* Write some pretty things on the announcement line */ printf ( ": %s using %dk card ram", ether_sprintf(hwaddr), ((NRXBUF*IE_RXBUF_SIZE)+(NTXBUF*IE_TXBUF_SIZE))/1024 ); Index: src/sys/arch/alpha/alpha/pmap.c diff -u src/sys/arch/alpha/alpha/pmap.c:1.301 src/sys/arch/alpha/alpha/pmap.c:1.302 --- src/sys/arch/alpha/alpha/pmap.c:1.301 Fri Aug 13 20:19:45 2021 +++ src/sys/arch/alpha/alpha/pmap.c Sun Sep 19 10:34:07 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.c,v 1.301 2021/08/13 20:19:45 andvar Exp $ */ +/* $NetBSD: pmap.c,v 1.302 2021/09/19 10:34:07 andvar Exp $ */ /*- * Copyright (c) 1998, 1999, 2000, 2001, 2007, 2008, 2020 @@ -135,7 +135,7 @@ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.301 2021/08/13 20:19:45 andvar Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.302 2021/09/19 10:34:07 andvar Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -3759,7 +3759,7 @@ pmap_l3pt_delref(pmap_t pmap, vaddr_t va "0x%lx\n", pmap_pte_pa(l2pte)); #endif /* - * You can pass NULL if you know the last refrence won't + * You can pass NULL if you know the last reference won't * be dropped. */ KASSERT(tlbctx != NULL); Index: src/sys/arch/amiga/dev/view.c diff -u src/sys/arch/amiga/dev/view.c:1.33 src/sys/arch/amiga/dev/view.c:1.34 --- src/sys/arch/amiga/dev/view.c:1.33 Thu Nov 12 12:19:49 2015 +++ src/sys/arch/amiga/dev/view.c Sun Sep 19 10:34:07 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: view.c,v 1.33 2015/11/12 12:19:49 phx Exp $ */ +/* $NetBSD: view.c,v 1.34 2021/09/19 10:34:07 andvar Exp $ */ /* * Copyright (c) 1994 Christian E. Hopps @@ -34,11 +34,11 @@ * simply to map the semantics of a graphics dipslay to * the semantics of a character block device. In other * words the graphics system as currently built does not like to be - * refered to by open/close/ioctl. This device serves as + * referred to by open/close/ioctl. This device serves as * a interface to graphics. */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.33 2015/11/12 12:19:49 phx Exp $"); +__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.34 2021/09/19 10:34:07 andvar Exp $"); #include <sys/param.h> #include <sys/systm.h> Index: src/sys/arch/amiga/dev/viewioctl.h diff -u src/sys/arch/amiga/dev/viewioctl.h:1.10 src/sys/arch/amiga/dev/viewioctl.h:1.11 --- src/sys/arch/amiga/dev/viewioctl.h:1.10 Mon Sep 7 03:49:45 2015 +++ src/sys/arch/amiga/dev/viewioctl.h Sun Sep 19 10:34:07 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: viewioctl.h,v 1.10 2015/09/07 03:49:45 dholland Exp $ */ +/* $NetBSD: viewioctl.h,v 1.11 2021/09/19 10:34:07 andvar Exp $ */ /* * Copyright (c) 1994 Christian E. Hopps @@ -35,7 +35,7 @@ * simply to map the semantics of a graphics dipslay to * the semantics of a character block device. In other * words the graphics system as currently built does not like to be - * refered to by open/close/ioctl. This device serves as + * referred to by open/close/ioctl. This device serves as * a interface to graphics. */ Index: src/sys/arch/amiga/dev/viewvar.h diff -u src/sys/arch/amiga/dev/viewvar.h:1.4 src/sys/arch/amiga/dev/viewvar.h:1.5 --- src/sys/arch/amiga/dev/viewvar.h:1.4 Sat Jan 26 13:41:00 2002 +++ src/sys/arch/amiga/dev/viewvar.h Sun Sep 19 10:34:07 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: viewvar.h,v 1.4 2002/01/26 13:41:00 aymeric Exp $ */ +/* $NetBSD: viewvar.h,v 1.5 2021/09/19 10:34:07 andvar Exp $ */ /* * Copyright (c) 1994 Christian E. Hopps @@ -34,7 +34,7 @@ * simply to map the semantics of a graphics dipslay to * the semantics of a character block device. In other * words the graphics system as currently built does not like to be - * refered to by open/close/ioctl. This device serves as + * referred to by open/close/ioctl. This device serves as * a interface to graphics. */ struct view_softc { Index: src/sys/arch/arc/arc/c_nec_pci.c diff -u src/sys/arch/arc/arc/c_nec_pci.c:1.20 src/sys/arch/arc/arc/c_nec_pci.c:1.21 --- src/sys/arch/arc/arc/c_nec_pci.c:1.20 Sat Oct 13 17:58:53 2012 +++ src/sys/arch/arc/arc/c_nec_pci.c Sun Sep 19 10:34:07 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: c_nec_pci.c,v 1.20 2012/10/13 17:58:53 jdc Exp $ */ +/* $NetBSD: c_nec_pci.c,v 1.21 2021/09/19 10:34:07 andvar Exp $ */ /*- * Copyright (C) 2000 Shuichiro URATA. All rights reserved. @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: c_nec_pci.c,v 1.20 2012/10/13 17:58:53 jdc Exp $"); +__KERNEL_RCSID(0, "$NetBSD: c_nec_pci.c,v 1.21 2021/09/19 10:34:07 andvar Exp $"); #define __INTR_PRIVATE #include <sys/param.h> @@ -222,7 +222,7 @@ c_nec_pci_init(void) * If you met this symptom, please report it to * port-arc-maintai...@netbsd.org. * - * kseg2iobufsize will be refered from pmap_bootstrap(). + * kseg2iobufsize will be referred from pmap_bootstrap(). */ kseg2iobufsize = 0x02000000; /* 32MB: consumes 32KB for PTEs */ Index: src/sys/arch/arm/broadcom/bcm53xx_var.h diff -u src/sys/arch/arm/broadcom/bcm53xx_var.h:1.6 src/sys/arch/arm/broadcom/bcm53xx_var.h:1.7 --- src/sys/arch/arm/broadcom/bcm53xx_var.h:1.6 Mon Oct 28 22:51:16 2013 +++ src/sys/arch/arm/broadcom/bcm53xx_var.h Sun Sep 19 10:34:08 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: bcm53xx_var.h,v 1.6 2013/10/28 22:51:16 matt Exp $ */ +/* $NetBSD: bcm53xx_var.h,v 1.7 2021/09/19 10:34:08 andvar Exp $ */ /*- * Copyright (c) 2012 The NetBSD Foundation, Inc. * All rights reserved. @@ -70,7 +70,7 @@ struct bcm53xx_clock_info { uint32_t clk_robo; // GENPLL CH1 uint32_t clk_usb2; // GENPLL CH2 uint32_t clk_iproc; // GENPLL CH3 - uint32_t clk_usb_ref; // 1920MHz USB Refernce Clock + uint32_t clk_usb_ref; // 1920MHz USB Reference Clock }; /* Index: src/sys/arch/arm/gemini/obio_wdc.c diff -u src/sys/arch/arm/gemini/obio_wdc.c:1.9 src/sys/arch/arm/gemini/obio_wdc.c:1.10 --- src/sys/arch/arm/gemini/obio_wdc.c:1.9 Mon Jun 3 06:04:20 2019 +++ src/sys/arch/arm/gemini/obio_wdc.c Sun Sep 19 10:34:08 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: obio_wdc.c,v 1.9 2019/06/03 06:04:20 msaitoh Exp $ */ +/* $NetBSD: obio_wdc.c,v 1.10 2021/09/19 10:34:08 andvar Exp $ */ /* adapted from iq31244/wdc_obio.c: * NetBSD: wdc_obio.c,v 1.5 2008/04/28 20:23:16 martin Exp @@ -34,7 +34,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: obio_wdc.c,v 1.9 2019/06/03 06:04:20 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: obio_wdc.c,v 1.10 2021/09/19 10:34:08 andvar Exp $"); #include "locators.h" @@ -93,7 +93,7 @@ wdc_obio_attach(device_t parent, device_ /* * we treat the two channels of the Gemini MIDE controller * as separate wdc controllers, because they have - * independent interrupts. 'chan' here is an MIDE chanel, + * independent interrupts. 'chan' here is an MIDE channel, * (not to be confused with ATA channel). */ switch (obio->obio_addr) { Index: src/sys/arch/arm/iomd/vidc20config.c diff -u src/sys/arch/arm/iomd/vidc20config.c:1.34 src/sys/arch/arm/iomd/vidc20config.c:1.35 --- src/sys/arch/arm/iomd/vidc20config.c:1.34 Sat Oct 25 10:58:12 2014 +++ src/sys/arch/arm/iomd/vidc20config.c Sun Sep 19 10:34:08 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: vidc20config.c,v 1.34 2014/10/25 10:58:12 skrll Exp $ */ +/* $NetBSD: vidc20config.c,v 1.35 2021/09/19 10:34:08 andvar Exp $ */ /* * Copyright (c) 2001 Reinoud Zandijk @@ -48,7 +48,7 @@ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: vidc20config.c,v 1.34 2014/10/25 10:58:12 skrll Exp $"); +__KERNEL_RCSID(0, "$NetBSD: vidc20config.c,v 1.35 2021/09/19 10:34:08 andvar Exp $"); #include <sys/types.h> #include <sys/param.h> @@ -371,7 +371,7 @@ vidcvideo_coldinit(void) /* simple function to abstract vidc variables ; returns virt start address of screen */ -/* XXX asumption that video memory is mapped in twice */ +/* XXX assumption that video memory is mapped in twice */ void *vidcvideo_hwscroll(int bytes) { Index: src/sys/arch/arm/samsung/exynos_soc.c diff -u src/sys/arch/arm/samsung/exynos_soc.c:1.39 src/sys/arch/arm/samsung/exynos_soc.c:1.40 --- src/sys/arch/arm/samsung/exynos_soc.c:1.39 Wed Oct 31 08:41:47 2018 +++ src/sys/arch/arm/samsung/exynos_soc.c Sun Sep 19 10:34:08 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: exynos_soc.c,v 1.39 2018/10/31 08:41:47 skrll Exp $ */ +/* $NetBSD: exynos_soc.c,v 1.40 2021/09/19 10:34:08 andvar Exp $ */ /*- * Copyright (c) 2014 The NetBSD Foundation, Inc. @@ -33,7 +33,7 @@ #include "opt_exynos.h" #include <sys/cdefs.h> -__KERNEL_RCSID(1, "$NetBSD: exynos_soc.c,v 1.39 2018/10/31 08:41:47 skrll Exp $"); +__KERNEL_RCSID(1, "$NetBSD: exynos_soc.c,v 1.40 2021/09/19 10:34:08 andvar Exp $"); #include <sys/param.h> #include <sys/bus.h> @@ -824,7 +824,7 @@ exynos5410_usb2phy_enable(bus_space_hand phyotg = bus_space_read_4(&armv7_generic_bs_tag, usb2phy_bsh, USB_PHY_OTG_SYS); - /* otg phy refrence clock: assumption its 24 Mhz now */ + /* otg phy reference clock: assumption its 24 Mhz now */ phyotg &= ~OTG_SYS_FSEL_MASK; phyotg |= __SHIFTIN(OTG_SYS_FSEL_MASK, FSEL_CLKSEL_24M); Index: src/sys/arch/arm/xscale/ixp425-fw.README diff -u src/sys/arch/arm/xscale/ixp425-fw.README:1.5 src/sys/arch/arm/xscale/ixp425-fw.README:1.6 --- src/sys/arch/arm/xscale/ixp425-fw.README:1.5 Thu Jan 30 13:07:18 2020 +++ src/sys/arch/arm/xscale/ixp425-fw.README Sun Sep 19 10:34:08 2021 @@ -1,4 +1,4 @@ -$NetBSD: ixp425-fw.README,v 1.5 2020/01/30 13:07:18 thorpej Exp $ +$NetBSD: ixp425-fw.README,v 1.6 2021/09/19 10:34:08 andvar Exp $ IXP425 NPE Microcode ~~~~~~~~~~~~~~~~~~~~ @@ -32,7 +32,7 @@ Select the "Download (without Crypto)" l section. Note that there is no benefit in selecting the "with Cypto" microcode at this time since NetBSD does not support it. -For refrence, the "with Crypto" version is available here: +For reference, the "with Crypto" version is available here: https://downloads.openwrt.org/sources/IPL_ixp400NpeLibraryWithCrypto-2_4.zip SHA1(IPL_ixp400NpeLibraryWithCrypto-2_4.zip)= 48beb80564fbbb7fb7861188cad26e896b5a5afc Index: src/sys/arch/arm/xscale/ixp425_if_npe.c diff -u src/sys/arch/arm/xscale/ixp425_if_npe.c:1.47 src/sys/arch/arm/xscale/ixp425_if_npe.c:1.48 --- src/sys/arch/arm/xscale/ixp425_if_npe.c:1.47 Tue Feb 18 14:49:32 2020 +++ src/sys/arch/arm/xscale/ixp425_if_npe.c Sun Sep 19 10:34:08 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: ixp425_if_npe.c,v 1.47 2020/02/18 14:49:32 thorpej Exp $ */ +/* $NetBSD: ixp425_if_npe.c,v 1.48 2021/09/19 10:34:08 andvar Exp $ */ /*- * Copyright (c) 2006 Sam Leffler. All rights reserved. @@ -28,7 +28,7 @@ #if 0 __FBSDID("$FreeBSD: src/sys/arm/xscale/ixp425/if_npe.c,v 1.1 2006/11/19 23:55:23 sam Exp $"); #endif -__KERNEL_RCSID(0, "$NetBSD: ixp425_if_npe.c,v 1.47 2020/02/18 14:49:32 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ixp425_if_npe.c,v 1.48 2021/09/19 10:34:08 andvar Exp $"); /* * Intel XScale NPE Ethernet driver. @@ -616,7 +616,7 @@ npe_activate(struct npe_softc *sc) * frames to process or tx'd frames to reap. These callbacks * are controlled by the q configurations; e.g. we get a * callback when tx_done has 2 or more frames to process and - * when the rx q has at least one frame. These setings can + * when the rx q has at least one frame. These settings can * changed at the time the q is configured. */ sc->rx_qid = npeconfig[unit].rx_qid; Index: src/sys/arch/atari/dev/view.c diff -u src/sys/arch/atari/dev/view.c:1.35 src/sys/arch/atari/dev/view.c:1.36 --- src/sys/arch/atari/dev/view.c:1.35 Thu Aug 20 14:40:16 2015 +++ src/sys/arch/atari/dev/view.c Sun Sep 19 10:34:08 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: view.c,v 1.35 2015/08/20 14:40:16 christos Exp $ */ +/* $NetBSD: view.c,v 1.36 2021/09/19 10:34:08 andvar Exp $ */ /* * Copyright (c) 1994 Christian E. Hopps @@ -34,11 +34,11 @@ * simply to map the semantics of a graphics dipslay to * the semantics of a character block device. In other * words the graphics system as currently built does not like to be - * refered to by open/close/ioctl. This device serves as + * referred to by open/close/ioctl. This device serves as * a interface to graphics. */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.35 2015/08/20 14:40:16 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.36 2021/09/19 10:34:08 andvar Exp $"); #include <sys/param.h> #include <sys/systm.h> Index: src/sys/arch/atari/dev/viewioctl.h diff -u src/sys/arch/atari/dev/viewioctl.h:1.2 src/sys/arch/atari/dev/viewioctl.h:1.3 --- src/sys/arch/atari/dev/viewioctl.h:1.2 Mon Sep 7 03:49:45 2015 +++ src/sys/arch/atari/dev/viewioctl.h Sun Sep 19 10:34:08 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: viewioctl.h,v 1.2 2015/09/07 03:49:45 dholland Exp $ */ +/* $NetBSD: viewioctl.h,v 1.3 2021/09/19 10:34:08 andvar Exp $ */ /* * Copyright (c) 1994 Christian E. Hopps @@ -35,7 +35,7 @@ * simply to map the semantics of a graphics display to * the semantics of a character block device. In other * words the graphics system as currently built does not like to be - * refered to by open/close/ioctl. This device serves as + * referred to by open/close/ioctl. This device serves as * a interface to graphics. */ Index: src/sys/arch/atari/dev/viewvar.h diff -u src/sys/arch/atari/dev/viewvar.h:1.7 src/sys/arch/atari/dev/viewvar.h:1.8 --- src/sys/arch/atari/dev/viewvar.h:1.7 Sat Mar 14 14:45:56 2009 +++ src/sys/arch/atari/dev/viewvar.h Sun Sep 19 10:34:08 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: viewvar.h,v 1.7 2009/03/14 14:45:56 dsl Exp $ */ +/* $NetBSD: viewvar.h,v 1.8 2021/09/19 10:34:08 andvar Exp $ */ /* * Copyright (c) 1994 Christian E. Hopps @@ -34,7 +34,7 @@ * simply to map the semantics of a graphics dipslay to * the semantics of a character block device. In other * words the graphics system as currently built does not like to be - * refered to by open/close/ioctl. This device serves as + * referred to by open/close/ioctl. This device serves as * a interface to graphics. */ #define NOLWP ((struct lwp *)-1) /* XXX */ Index: src/sys/arch/m68k/include/pmap_motorola.h diff -u src/sys/arch/m68k/include/pmap_motorola.h:1.36 src/sys/arch/m68k/include/pmap_motorola.h:1.37 --- src/sys/arch/m68k/include/pmap_motorola.h:1.36 Sat Mar 14 14:05:43 2020 +++ src/sys/arch/m68k/include/pmap_motorola.h Sun Sep 19 10:34:09 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: pmap_motorola.h,v 1.36 2020/03/14 14:05:43 ad Exp $ */ +/* $NetBSD: pmap_motorola.h,v 1.37 2021/09/19 10:34:09 andvar Exp $ */ /* * Copyright (c) 1991, 1993 @@ -116,7 +116,7 @@ struct pmap { * Even on 68040/060, we still appropriate 2-level ste-pte pmap structures * for 68020/030 (derived from 4.4BSD/hp300) to handle 040's 3-level MMU. * TIA_SIZE and TIB_SIZE are used to represent such pmap structures and - * they are also refered on 040/060. + * they are also referred on 040/060. * * NBSEG and SEGOFSET are used to check l2 STE of the specified VA, * so they have different values between 020/030 and 040/060. Index: src/sys/arch/mips/mips/locore_mips1.S diff -u src/sys/arch/mips/mips/locore_mips1.S:1.95 src/sys/arch/mips/mips/locore_mips1.S:1.96 --- src/sys/arch/mips/mips/locore_mips1.S:1.95 Sat Aug 22 05:52:00 2020 +++ src/sys/arch/mips/mips/locore_mips1.S Sun Sep 19 10:34:09 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: locore_mips1.S,v 1.95 2020/08/22 05:52:00 simonb Exp $ */ +/* $NetBSD: locore_mips1.S,v 1.96 2021/09/19 10:34:09 andvar Exp $ */ /* * Copyright (c) 1992, 1993 @@ -57,7 +57,7 @@ #include <mips/asm.h> #include <mips/cpuregs.h> -RCSID("$NetBSD: locore_mips1.S,v 1.95 2020/08/22 05:52:00 simonb Exp $") +RCSID("$NetBSD: locore_mips1.S,v 1.96 2021/09/19 10:34:09 andvar Exp $") #include "assym.h" @@ -1529,7 +1529,7 @@ END(MIPSX(lwp_trampoline)) * void mipsN_cpu_switch_resume(struct lwp *newlwp) * * Wiredown the USPACE of newproc with TLB entry#0 and #1. Check - * if target USPACE is already refered by any TLB entry before + * if target USPACE is already referred by any TLB entry before * doing that, and make sure TBIS(them) in the case. */ LEAF_NOPROFILE(MIPSX(cpu_switch_resume)) Index: src/sys/arch/powerpc/include/booke/etsecreg.h diff -u src/sys/arch/powerpc/include/booke/etsecreg.h:1.8 src/sys/arch/powerpc/include/booke/etsecreg.h:1.9 --- src/sys/arch/powerpc/include/booke/etsecreg.h:1.8 Thu Feb 26 02:27:40 2015 +++ src/sys/arch/powerpc/include/booke/etsecreg.h Sun Sep 19 10:34:09 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: etsecreg.h,v 1.8 2015/02/26 02:27:40 nonaka Exp $ */ +/* $NetBSD: etsecreg.h,v 1.9 2021/09/19 10:34:09 andvar Exp $ */ /*- * Copyright (c) 2010, 2011 The NetBSD Foundation, Inc. * All rights reserved. @@ -153,7 +153,7 @@ struct rxfcb { #define IEVENT_PERR __PPCBIT(31) /* Receive parse error for TOE */ #define IMASK 0x014 /* Interrupt mask register */ #define EDIS 0x018 /* error disabled register */ -#define EMAPG 0x01c /* group eror mapping register */ +#define EMAPG 0x01c /* group error mapping register */ #define ECNTRL 0x020 /* ethernet control register */ #define ECNTRL_FIFM __PPCBIT(16) /* FIFO mode enable */ #define ECNTRL_CLRCNT __PPCBIT(17) /* Clear all MIB counters */ Index: src/sys/dev/ic/isp.c diff -u src/sys/dev/ic/isp.c:1.129 src/sys/dev/ic/isp.c:1.130 --- src/sys/dev/ic/isp.c:1.129 Sat Sep 11 20:28:06 2021 +++ src/sys/dev/ic/isp.c Sun Sep 19 10:34:09 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: isp.c,v 1.129 2021/09/11 20:28:06 andvar Exp $ */ +/* $NetBSD: isp.c,v 1.130 2021/09/19 10:34:09 andvar Exp $ */ /* * Machine and OS Independent (well, as best as possible) * code for the Qlogic ISP SCSI adapters. @@ -43,7 +43,7 @@ */ #ifdef __NetBSD__ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: isp.c,v 1.129 2021/09/11 20:28:06 andvar Exp $"); +__KERNEL_RCSID(0, "$NetBSD: isp.c,v 1.130 2021/09/19 10:34:09 andvar Exp $"); #include <dev/ic/isp_netbsd.h> #endif #ifdef __FreeBSD__ @@ -2149,7 +2149,7 @@ isp_plogx(ispsoftc_t *isp, int chan, uin goto out; } else if (plp->plogx_status != PLOGX_STATUS_IOCBERR) { isp_prt(isp, ISP_LOGWARN, - "status 0x%x on port login IOCB chanel %d", + "status 0x%x on port login IOCB channel %d", plp->plogx_status, chan); rval = -1; goto out; Index: src/sys/dev/microcode/aic7xxx/aic79xx.seq diff -u src/sys/dev/microcode/aic7xxx/aic79xx.seq:1.14 src/sys/dev/microcode/aic7xxx/aic79xx.seq:1.15 --- src/sys/dev/microcode/aic7xxx/aic79xx.seq:1.14 Thu Sep 16 21:29:41 2021 +++ src/sys/dev/microcode/aic7xxx/aic79xx.seq Sun Sep 19 10:34:09 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: aic79xx.seq,v 1.14 2021/09/16 21:29:41 andvar Exp $ */ +/* $NetBSD: aic79xx.seq,v 1.15 2021/09/19 10:34:09 andvar Exp $ */ /* * Adaptec U320 device driver firmware for Linux and FreeBSD. @@ -1926,7 +1926,7 @@ pkt_status_check_nonpackreq: /* * The unexpected nonpkt phase handler assumes that any * data channel use will have a FIFO reference count. It - * turns out that the status handler doesn't need a refernce + * turns out that the status handler doesn't need a reference * count since the status received flag, and thus completion * processing, cannot be set until the handler is finished. * We increment the count here to make the nonpkt handler Index: src/sys/dev/microcode/aic7xxx/aicasm_gram.y diff -u src/sys/dev/microcode/aic7xxx/aicasm_gram.y:1.7 src/sys/dev/microcode/aic7xxx/aicasm_gram.y:1.8 --- src/sys/dev/microcode/aic7xxx/aicasm_gram.y:1.7 Sat Jun 27 16:48:01 2020 +++ src/sys/dev/microcode/aic7xxx/aicasm_gram.y Sun Sep 19 10:34:09 2021 @@ -1,5 +1,5 @@ %{ -/* $NetBSD: aicasm_gram.y,v 1.7 2020/06/27 16:48:01 jdolecek Exp $ */ +/* $NetBSD: aicasm_gram.y,v 1.8 2021/09/19 10:34:09 andvar Exp $ */ /* * Parser for the Aic7xxx SCSI Host adapter sequencer assembler. @@ -1757,7 +1757,7 @@ format_3_instr(int opcode, symbol_ref_t instr = seq_alloc(); f3_instr = &instr->format.format3; if (address->symbol == NULL) { - /* 'dot' referrence. Use the current instruction pointer */ + /* 'dot' reference. Use the current instruction pointer */ addr = instruction_ptr + address->offset; } else if (address->symbol->type == UNINITIALIZED) { /* forward reference */ Index: src/sys/dev/pci/ixgbe/ixgbe.h diff -u src/sys/dev/pci/ixgbe/ixgbe.h:1.81 src/sys/dev/pci/ixgbe/ixgbe.h:1.82 --- src/sys/dev/pci/ixgbe/ixgbe.h:1.81 Thu Sep 16 09:55:28 2021 +++ src/sys/dev/pci/ixgbe/ixgbe.h Sun Sep 19 10:34:09 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: ixgbe.h,v 1.81 2021/09/16 09:55:28 msaitoh Exp $ */ +/* $NetBSD: ixgbe.h,v 1.82 2021/09/19 10:34:09 andvar Exp $ */ /****************************************************************************** SPDX-License-Identifier: BSD-3-Clause @@ -197,7 +197,7 @@ * 33 should be large enough even for 64K TSO * (32 * 2K mbuf cluster and 1 x mbuf header). * - * Rerefence: 82599-X550 dataseet 7.2.1.1 "Transmit Storage in System Memory". + * Reference: 82599-X550 dataseet 7.2.1.1 "Transmit Storage in System Memory". */ #define IXGBE_82599_SCATTER_MAX (40 - IXGBE_TX_WTHRESH - 2) #define IXGBE_SCATTER_DEFAULT 33 Index: src/sys/dev/scsipi/if_se.c diff -u src/sys/dev/scsipi/if_se.c:1.113 src/sys/dev/scsipi/if_se.c:1.114 --- src/sys/dev/scsipi/if_se.c:1.113 Wed Jun 16 00:21:19 2021 +++ src/sys/dev/scsipi/if_se.c Sun Sep 19 10:34:09 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: if_se.c,v 1.113 2021/06/16 00:21:19 riastradh Exp $ */ +/* $NetBSD: if_se.c,v 1.114 2021/09/19 10:34:09 andvar Exp $ */ /* * Copyright (c) 1997 Ian W. Dall <ian.d...@dsto.defence.gov.au> @@ -37,7 +37,7 @@ * * Acknowledgement: Thanks are due to Philip L. Budne <b...@cs.bu.edu> * who reverse engineered the EA41x. In developing this code, - * Phil's userland daemon "etherd", was refered to extensively in lieu + * Phil's userland daemon "etherd", was referred to extensively in lieu * of accurate documentation for the device. * * This is a weird device! It doesn't conform to the scsi spec in much @@ -59,7 +59,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_se.c,v 1.113 2021/06/16 00:21:19 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_se.c,v 1.114 2021/09/19 10:34:09 andvar Exp $"); #ifdef _KERNEL_OPT #include "opt_inet.h" Index: src/sys/net80211/ieee80211_node.c diff -u src/sys/net80211/ieee80211_node.c:1.81 src/sys/net80211/ieee80211_node.c:1.82 --- src/sys/net80211/ieee80211_node.c:1.81 Mon Nov 30 05:33:32 2020 +++ src/sys/net80211/ieee80211_node.c Sun Sep 19 10:34:09 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: ieee80211_node.c,v 1.81 2020/11/30 05:33:32 msaitoh Exp $ */ +/* $NetBSD: ieee80211_node.c,v 1.82 2021/09/19 10:34:09 andvar Exp $ */ /* * Copyright (c) 2001 Atsushi Onoe @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD: src/sys/net80211/ieee80211_node.c,v 1.65 2005/08/13 17:50:21 sam Exp $"); #endif #ifdef __NetBSD__ -__KERNEL_RCSID(0, "$NetBSD: ieee80211_node.c,v 1.81 2020/11/30 05:33:32 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ieee80211_node.c,v 1.82 2021/09/19 10:34:09 andvar Exp $"); #endif #ifdef _KERNEL_OPT @@ -115,7 +115,7 @@ ieee80211_node_attach(struct ieee80211co ic->ic_node_cleanup = node_cleanup; ic->ic_node_getrssi = node_getrssi; - /* default station inactivity timer setings */ + /* default station inactivity timer settings */ ic->ic_inact_init = IEEE80211_INACT_INIT; ic->ic_inact_auth = IEEE80211_INACT_AUTH; ic->ic_inact_run = IEEE80211_INACT_RUN; Index: src/sys/netinet/sctp_input.c diff -u src/sys/netinet/sctp_input.c:1.14 src/sys/netinet/sctp_input.c:1.15 --- src/sys/netinet/sctp_input.c:1.14 Tue May 28 08:59:35 2019 +++ src/sys/netinet/sctp_input.c Sun Sep 19 10:34:10 2021 @@ -1,5 +1,5 @@ /* $KAME: sctp_input.c,v 1.28 2005/04/21 18:36:21 nishida Exp $ */ -/* $NetBSD: sctp_input.c,v 1.14 2019/05/28 08:59:35 msaitoh Exp $ */ +/* $NetBSD: sctp_input.c,v 1.15 2021/09/19 10:34:10 andvar Exp $ */ /* * Copyright (C) 2002, 2003, 2004 Cisco Systems Inc, @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: sctp_input.c,v 1.14 2019/05/28 08:59:35 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sctp_input.c,v 1.15 2021/09/19 10:34:10 andvar Exp $"); #ifdef _KERNEL_OPT #include "opt_ipsec.h" @@ -387,7 +387,7 @@ sctp_process_init_ack(struct mbuf *m, in /* * Cancel the INIT timer, We do this first before queueing - * the cookie. We always cancel at the primary to assue that + * the cookie. We always cancel at the primary to assume that * we are canceling the timer started by the INIT which always * goes to the primary. */ Index: src/sys/netinet/sctp_pcb.c diff -u src/sys/netinet/sctp_pcb.c:1.21 src/sys/netinet/sctp_pcb.c:1.22 --- src/sys/netinet/sctp_pcb.c:1.21 Thu Apr 30 03:30:10 2020 +++ src/sys/netinet/sctp_pcb.c Sun Sep 19 10:34:10 2021 @@ -1,5 +1,5 @@ /* $KAME: sctp_pcb.c,v 1.39 2005/06/16 18:29:25 jinmei Exp $ */ -/* $NetBSD: sctp_pcb.c,v 1.21 2020/04/30 03:30:10 riastradh Exp $ */ +/* $NetBSD: sctp_pcb.c,v 1.22 2021/09/19 10:34:10 andvar Exp $ */ /* * Copyright (c) 2001, 2002, 2003, 2004 Cisco Systems, Inc. @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: sctp_pcb.c,v 1.21 2020/04/30 03:30:10 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sctp_pcb.c,v 1.22 2021/09/19 10:34:10 andvar Exp $"); #ifdef _KERNEL_OPT #include "opt_inet.h" @@ -742,7 +742,7 @@ sctp_endpoint_probe(struct sockaddr *nam } #ifdef SCTP_DEBUG if (sctp_debug_on & SCTP_DEBUG_PCB1) { - printf("Ok, found maching local port\n"); + printf("Ok, found matching local port\n"); } #endif LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { Index: src/tests/fs/puffs/h_dtfs/dtfs_vfsops.c diff -u src/tests/fs/puffs/h_dtfs/dtfs_vfsops.c:1.4 src/tests/fs/puffs/h_dtfs/dtfs_vfsops.c:1.5 --- src/tests/fs/puffs/h_dtfs/dtfs_vfsops.c:1.4 Mon Sep 23 12:00:58 2019 +++ src/tests/fs/puffs/h_dtfs/dtfs_vfsops.c Sun Sep 19 10:34:10 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: dtfs_vfsops.c,v 1.4 2019/09/23 12:00:58 christos Exp $ */ +/* $NetBSD: dtfs_vfsops.c,v 1.5 2021/09/19 10:34:10 andvar Exp $ */ /* * Copyright (c) 2006 Antti Kantee. All Rights Reserved. @@ -160,7 +160,7 @@ dtfs_domount(struct puffs_usermount *pu, } } if (i == NTYPES) { - fprintf(stderr, "no maching type for %s\n", typestr); + fprintf(stderr, "no matching type for %s\n", typestr); return 1; } } Index: src/tests/kernel/t_kauth_pr_47598.c diff -u src/tests/kernel/t_kauth_pr_47598.c:1.4 src/tests/kernel/t_kauth_pr_47598.c:1.5 --- src/tests/kernel/t_kauth_pr_47598.c:1.4 Mon Feb 10 16:51:48 2020 +++ src/tests/kernel/t_kauth_pr_47598.c Sun Sep 19 10:34:10 2021 @@ -27,7 +27,7 @@ #include <sys/cdefs.h> __COPYRIGHT("@(#) Copyright (c) 2013\ The NetBSD Foundation, inc. All rights reserved."); -__RCSID("$NetBSD: t_kauth_pr_47598.c,v 1.4 2020/02/10 16:51:48 riastradh Exp $"); +__RCSID("$NetBSD: t_kauth_pr_47598.c,v 1.5 2021/09/19 10:34:10 andvar Exp $"); #include <errno.h> #include <unistd.h> @@ -140,7 +140,7 @@ ATF_TC_BODY(kauth_curtain, tc) printf("port is %d\n", ntohs(sa.sin_port)); err = connect(s2, (struct sockaddr *)&sa, sizeof(sa)); ATF_REQUIRE_MSG(err == -1 && errno == EINPROGRESS, - "conect returned %d with errno %d", err, errno); + "connect returned %d with errno %d", err, errno); fflush(stdout); fflush(stderr); Index: src/usr.sbin/acpitools/acpidump/acpi.c diff -u src/usr.sbin/acpitools/acpidump/acpi.c:1.51 src/usr.sbin/acpitools/acpidump/acpi.c:1.52 --- src/usr.sbin/acpitools/acpidump/acpi.c:1.51 Tue Sep 14 20:34:36 2021 +++ src/usr.sbin/acpitools/acpidump/acpi.c Sun Sep 19 10:34:10 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: acpi.c,v 1.51 2021/09/14 20:34:36 rillig Exp $ */ +/* $NetBSD: acpi.c,v 1.52 2021/09/19 10:34:10 andvar Exp $ */ /*- * Copyright (c) 1998 Doug Rabson @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: acpi.c,v 1.51 2021/09/14 20:34:36 rillig Exp $"); +__RCSID("$NetBSD: acpi.c,v 1.52 2021/09/19 10:34:10 andvar Exp $"); #include <sys/param.h> #include <sys/endian.h> @@ -2300,7 +2300,7 @@ acpi_print_iort_smmuv3(ACPI_IORT_NODE *n printf("\tSync GSIV=%u\n", smmu->SyncGsiv); printf("\tProximity domain=%u\n", smmu->Pxm); - /* XXX should we print the refered contents? */ + /* XXX should we print the referred contents? */ printf("\tDevice ID mapping index=%u\n", smmu->IdMappingIndex); }