summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2018-10-22 17:31:24 +0000
committerkrw <krw@openbsd.org>2018-10-22 17:31:24 +0000
commitc43131ad7f420c8af6cee2cdfbcd3f96b0d6e971 (patch)
tree1d9b9500a52d708ea5beca72031c174bf6b63eec /sys
parentThe recent switch to realpath(3) for the boot string in vmd(8) broke (diff)
downloadwireguard-openbsd-c43131ad7f420c8af6cee2cdfbcd3f96b0d6e971.tar.xz
wireguard-openbsd-c43131ad7f420c8af6cee2cdfbcd3f96b0d6e971.zip
More "explicitely" -> "explicitly" in various comments.
ok guenther@ tb@ deraadt@
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/m88k/m88k/m88k_machdep.c4
-rw-r--r--sys/arch/mips64/include/pmap.h4
-rw-r--r--sys/arch/mips64/mips64/fp_emulate.c4
-rw-r--r--sys/arch/mips64/mips64/pmap.c4
-rw-r--r--sys/arch/powerpc/powerpc/pmap.c4
-rw-r--r--sys/dev/ic/aic6250.c4
-rw-r--r--sys/dev/sbus/cgtwelve.c4
-rw-r--r--sys/tmpfs/tmpfs_vnops.c4
8 files changed, 16 insertions, 16 deletions
diff --git a/sys/arch/m88k/m88k/m88k_machdep.c b/sys/arch/m88k/m88k/m88k_machdep.c
index 2d1d9fd670e..46a20b8f44a 100644
--- a/sys/arch/m88k/m88k/m88k_machdep.c
+++ b/sys/arch/m88k/m88k/m88k_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: m88k_machdep.c,v 1.68 2017/05/29 14:19:50 mpi Exp $ */
+/* $OpenBSD: m88k_machdep.c,v 1.69 2018/10/22 17:31:24 krw Exp $ */
/*
* Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -188,7 +188,7 @@ setregs(p, pack, stack, retval)
/*
* ... unless we are starting init, in which case we
* won't be returning through the regular path, and
- * need to explicitely set up nip and fip (note that
+ * need to explicitly set up nip and fip (note that
* 88110 do not need such a test).
* Note that this isn't 100% correct, as it mishandles
* a real execve() from userspace by process 1. However
diff --git a/sys/arch/mips64/include/pmap.h b/sys/arch/mips64/include/pmap.h
index 33fbc7cb094..df76f26e314 100644
--- a/sys/arch/mips64/include/pmap.h
+++ b/sys/arch/mips64/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.46 2016/12/22 15:33:36 visa Exp $ */
+/* $OpenBSD: pmap.h,v 1.47 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 1987 Carnegie-Mellon University
@@ -132,7 +132,7 @@ typedef struct pmap {
(sizeof(struct pmap_asid_info) * ((x) - 1))))
/* machine-dependent pg_flags */
-#define PGF_UNCACHED PG_PMAP0 /* Page is explicitely uncached */
+#define PGF_UNCACHED PG_PMAP0 /* Page is explicitly uncached */
#define PGF_CACHED PG_PMAP1 /* Page is currently cached */
#define PGF_ATTR_MOD PG_PMAP2
#define PGF_ATTR_REF PG_PMAP3
diff --git a/sys/arch/mips64/mips64/fp_emulate.c b/sys/arch/mips64/mips64/fp_emulate.c
index 8d1bc8eebfc..cb497b85e7f 100644
--- a/sys/arch/mips64/mips64/fp_emulate.c
+++ b/sys/arch/mips64/mips64/fp_emulate.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fp_emulate.c,v 1.19 2017/09/16 05:04:34 visa Exp $ */
+/* $OpenBSD: fp_emulate.c,v 1.20 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 2010 Miodrag Vallat.
@@ -579,7 +579,7 @@ fpu_emulate_cop1(struct proc *p, struct trapframe *tf, uint32_t insn)
/*
* Check for valid format. FRType assumes bit 25 is always set,
- * so we need to check for it explicitely.
+ * so we need to check for it explicitly.
*/
if ((insn & (1 << 25)) == 0)
diff --git a/sys/arch/mips64/mips64/pmap.c b/sys/arch/mips64/mips64/pmap.c
index 48ae996fde2..876434c3ec5 100644
--- a/sys/arch/mips64/mips64/pmap.c
+++ b/sys/arch/mips64/mips64/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.110 2018/05/09 14:42:11 visa Exp $ */
+/* $OpenBSD: pmap.c,v 1.111 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -1856,7 +1856,7 @@ pmap_enter_pv(pmap_t pmap, vaddr_t va, vm_page_t pg, pt_entry_t *npte)
if ((pg->pg_flags & PGF_CACHED) == 0) {
/*
* If page is not mapped cached it's either because
- * an uncached mapping was explicitely requested or
+ * an uncached mapping was explicitly requested or
* we have a VAC situation.
* Map this page uncached as well.
*/
diff --git a/sys/arch/powerpc/powerpc/pmap.c b/sys/arch/powerpc/powerpc/pmap.c
index 2adb27d3f4b..e85e69785ca 100644
--- a/sys/arch/powerpc/powerpc/pmap.c
+++ b/sys/arch/powerpc/powerpc/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.167 2017/05/16 20:52:54 kettenis Exp $ */
+/* $OpenBSD: pmap.c,v 1.168 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 2015 Martin Pieuchot
@@ -1086,7 +1086,7 @@ pmap_zero_page(struct vm_page *pg)
/*
* Loop over & zero cache lines. This code assumes that 64-bit
- * CPUs have 128-byte cache lines. We explicitely use ``dcbzl''
+ * CPUs have 128-byte cache lines. We explicitly use ``dcbzl''
* here because we do not clear the DCBZ_SIZE bit of the HID5
* register in order to be compatible with code using ``dcbz''
* and assuming that cache line size is 32.
diff --git a/sys/dev/ic/aic6250.c b/sys/dev/ic/aic6250.c
index 23297285bc9..cf573926e89 100644
--- a/sys/dev/ic/aic6250.c
+++ b/sys/dev/ic/aic6250.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aic6250.c,v 1.4 2017/09/08 05:36:52 deraadt Exp $ */
+/* $OpenBSD: aic6250.c,v 1.5 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 2010, 2013 Miodrag Vallat.
@@ -1088,7 +1088,7 @@ out:
AIC_MISC(("n=%d imess=0x%02x ", n, sc->sc_imess[0]));
/*
- * We need to explicitely un-busy.
+ * We need to explicitly un-busy.
*/
(*sc->sc_write)(sc, AIC_SCSI_SIGNAL_REG,
(*sc->sc_read)(sc, AIC_SCSI_SIGNAL_REG) &
diff --git a/sys/dev/sbus/cgtwelve.c b/sys/dev/sbus/cgtwelve.c
index 3caede633b1..7ab972a9a00 100644
--- a/sys/dev/sbus/cgtwelve.c
+++ b/sys/dev/sbus/cgtwelve.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cgtwelve.c,v 1.8 2013/10/20 20:07:30 miod Exp $ */
+/* $OpenBSD: cgtwelve.c,v 1.9 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 2002, 2003 Miodrag Vallat. All rights reserved.
@@ -41,7 +41,7 @@
* 8 bit and 24 bit color), and a lot of colormap combinations.
*
* All of this is driven by a set of three Bt462 ramdacs (latched unless
- * explicitely programmed), and a couple of other Matrox-specific chips.
+ * explicitly programmed), and a couple of other Matrox-specific chips.
*
* XXX The high res card is untested.
*/
diff --git a/sys/tmpfs/tmpfs_vnops.c b/sys/tmpfs/tmpfs_vnops.c
index 6615a1951bd..8b5c7a76b46 100644
--- a/sys/tmpfs/tmpfs_vnops.c
+++ b/sys/tmpfs/tmpfs_vnops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmpfs_vnops.c,v 1.32 2018/06/07 13:37:28 visa Exp $ */
+/* $OpenBSD: tmpfs_vnops.c,v 1.33 2018/10/22 17:31:25 krw Exp $ */
/* $NetBSD: tmpfs_vnops.c,v 1.100 2012/11/05 17:27:39 dholland Exp $ */
/*
@@ -289,7 +289,7 @@ done:
out:
/*
* If (1) we succeded, (2) found a distinct vnode to return and (3) were
- * either explicitely told to keep the parent locked or are in the
+ * either explicitly told to keep the parent locked or are in the
* middle of a lookup, unlock the parent vnode.
*/
if ((error == 0 || error == EJUSTRETURN) && /* (1) */