summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/fdt/fdt_port.h4
-rw-r--r--sys/dev/ic/mfi.c6
-rw-r--r--sys/dev/ic/rtl8169.c6
-rw-r--r--sys/dev/ic/smc91cxx.c6
-rw-r--r--sys/dev/ic/wdc.c6
-rw-r--r--sys/dev/ic/z8530reg.h4
-rw-r--r--sys/dev/ir/irframe_tty.c6
-rw-r--r--sys/dev/microcode/aic7xxx/aicasm.c14
-rw-r--r--sys/dev/microcode/aic7xxx/aicasm_symbol.c6
-rw-r--r--sys/dev/microcode/aic7xxx/aicasm_symbol.h4
-rw-r--r--sys/dev/pci/if_sip.c8
-rw-r--r--sys/dev/usb/xhci.c6
12 files changed, 38 insertions, 38 deletions
diff --git a/sys/dev/fdt/fdt_port.h b/sys/dev/fdt/fdt_port.h
index 129c1f6202f..15a7df238b6 100644
--- a/sys/dev/fdt/fdt_port.h
+++ b/sys/dev/fdt/fdt_port.h
@@ -1,4 +1,4 @@
-/* $NetBSD: fdt_port.h,v 1.5 2022/04/10 09:50:45 andvar Exp $ */
+/* $NetBSD: fdt_port.h,v 1.6 2022/05/24 20:50:19 andvar Exp $ */
/*-
* Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -113,7 +113,7 @@ void * fdt_endpoint_get_data(struct fdt_endpoint *);
int fdt_endpoint_activate(struct fdt_endpoint *, bool);
/*
- * Activate/deactive an endpoint by direct reference.
+ * Activate/deactivate an endpoint by direct reference.
*/
int fdt_endpoint_activate_direct(struct fdt_endpoint *, bool);
diff --git a/sys/dev/ic/mfi.c b/sys/dev/ic/mfi.c
index 2dff66792cc..02ee4770286 100644
--- a/sys/dev/ic/mfi.c
+++ b/sys/dev/ic/mfi.c
@@ -1,4 +1,4 @@
-/* $NetBSD: mfi.c,v 1.78 2022/05/22 08:59:34 hannken Exp $ */
+/* $NetBSD: mfi.c,v 1.79 2022/05/24 20:50:19 andvar Exp $ */
/* $OpenBSD: mfi.c,v 1.66 2006/11/28 23:59:45 dlg Exp $ */
/*
@@ -73,7 +73,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mfi.c,v 1.78 2022/05/22 08:59:34 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mfi.c,v 1.79 2022/05/24 20:50:19 andvar Exp $");
#include "bio.h"
@@ -1096,7 +1096,7 @@ mfi_attach(struct mfi_softc *sc, enum mfi_iop iop)
/*
* Allocate DMA memory mapping for MPI2 IOC Init descriptor,
- * we are taking it diffrent from what we have allocated for
+ * we are taking it different from what we have allocated for
* Request and reply descriptors to avoid confusion later
*/
sc->sc_tbolt_ioc_init = mfi_allocmem(sc,
diff --git a/sys/dev/ic/rtl8169.c b/sys/dev/ic/rtl8169.c
index 07e2b658cd5..b5b53f97858 100644
--- a/sys/dev/ic/rtl8169.c
+++ b/sys/dev/ic/rtl8169.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rtl8169.c,v 1.170 2022/01/27 18:07:27 jakllsch Exp $ */
+/* $NetBSD: rtl8169.c,v 1.171 2022/05/24 20:50:19 andvar Exp $ */
/*
* Copyright (c) 1997, 1998-2003
@@ -33,7 +33,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rtl8169.c,v 1.170 2022/01/27 18:07:27 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rtl8169.c,v 1.171 2022/05/24 20:50:19 andvar Exp $");
/* $FreeBSD: /repoman/r/ncvs/src/sys/dev/re/if_re.c,v 1.20 2004/04/11 20:34:08 ru Exp $ */
/*
@@ -736,7 +736,7 @@ re_attach(struct rtk_softc *sc)
/*
* RTL81x9 chips automatically read EEPROM to init MAC address,
* and some NAS override its MAC address per own configuration,
- * so no need to explicitely read EEPROM and set ID registers.
+ * so no need to explicitly read EEPROM and set ID registers.
*/
#ifdef RE_USE_EECMD
if ((sc->sc_quirk & RTKQ_NOEECMD) != 0) {
diff --git a/sys/dev/ic/smc91cxx.c b/sys/dev/ic/smc91cxx.c
index 0ef995fd491..0394bf7446e 100644
--- a/sys/dev/ic/smc91cxx.c
+++ b/sys/dev/ic/smc91cxx.c
@@ -1,4 +1,4 @@
-/* $NetBSD: smc91cxx.c,v 1.106 2020/02/07 00:56:48 thorpej Exp $ */
+/* $NetBSD: smc91cxx.c,v 1.107 2022/05/24 20:50:19 andvar Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -66,12 +66,12 @@
/*
* Core driver for the SMC 91Cxx family of Ethernet chips.
*
- * Memory allocation interrupt logic is drived from an SMC 91C90 driver
+ * Memory allocation interrupt logic is derived from an SMC 91C90 driver
* written for NetBSD/amiga by Michael Hitch.
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: smc91cxx.c,v 1.106 2020/02/07 00:56:48 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: smc91cxx.c,v 1.107 2022/05/24 20:50:19 andvar Exp $");
#include "opt_inet.h"
diff --git a/sys/dev/ic/wdc.c b/sys/dev/ic/wdc.c
index 0e2fd4f4fb8..23a31bf5cb9 100644
--- a/sys/dev/ic/wdc.c
+++ b/sys/dev/ic/wdc.c
@@ -1,4 +1,4 @@
-/* $NetBSD: wdc.c,v 1.308 2021/10/05 08:01:05 rin Exp $ */
+/* $NetBSD: wdc.c,v 1.309 2022/05/24 20:50:19 andvar Exp $ */
/*
* Copyright (c) 1998, 2001, 2003 Manuel Bouyer. All rights reserved.
@@ -58,7 +58,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wdc.c,v 1.308 2021/10/05 08:01:05 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wdc.c,v 1.309 2022/05/24 20:50:19 andvar Exp $");
#include "opt_ata.h"
#include "opt_wdc.h"
@@ -997,7 +997,7 @@ wdc_reset_channel(struct ata_channel *chp, int flags)
/*
* Look for pending xfers. If we have a shared queue, we'll also reset
* the other channel if the current xfer is running on it.
- * Then we'll kill the eventual active transfer explicitely, so that
+ * Then we'll kill the eventual active transfer explicitly, so that
* it is queued for retry immediatelly without waiting for I/O timeout.
*/
if (xfer) {
diff --git a/sys/dev/ic/z8530reg.h b/sys/dev/ic/z8530reg.h
index 8aa13ad8b87..3b274ed6efe 100644
--- a/sys/dev/ic/z8530reg.h
+++ b/sys/dev/ic/z8530reg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: z8530reg.h,v 1.12 2005/12/11 12:21:29 christos Exp $ */
+/* $NetBSD: z8530reg.h,v 1.13 2022/05/24 20:50:19 andvar Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -243,7 +243,7 @@
/*
* Bits in Write Register 7' (ZSWR_ENHANCED above). This register is
- * only available on the 85230. Dispite the fact it contains flags
+ * only available on the 85230. Despite the fact it contains flags
* and not a single value, the register was named as it is read
* via RR14. Weird.
*/
diff --git a/sys/dev/ir/irframe_tty.c b/sys/dev/ir/irframe_tty.c
index b13119d2889..12de6938a6a 100644
--- a/sys/dev/ir/irframe_tty.c
+++ b/sys/dev/ir/irframe_tty.c
@@ -1,4 +1,4 @@
-/* $NetBSD: irframe_tty.c,v 1.65 2021/09/26 01:16:09 thorpej Exp $ */
+/* $NetBSD: irframe_tty.c,v 1.66 2022/05/24 20:50:19 andvar Exp $ */
/*
* TODO
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: irframe_tty.c,v 1.65 2021/09/26 01:16:09 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: irframe_tty.c,v 1.66 2022/05/24 20:50:19 andvar Exp $");
#include <sys/param.h>
#include <sys/proc.h>
@@ -1138,7 +1138,7 @@ irts_litelink(struct tty *tp, u_int speed)
/* Control register 1 */
#define GIRBIL_TXEN 0x01 /* Enable transmitter */
#define GIRBIL_RXEN 0x02 /* Enable receiver */
-#define GIRBIL_ECAN 0x04 /* Cancel self emmited data */
+#define GIRBIL_ECAN 0x04 /* Cancel self emitted data */
#define GIRBIL_ECHO 0x08 /* Echo control characters */
/* LED Current Register */
diff --git a/sys/dev/microcode/aic7xxx/aicasm.c b/sys/dev/microcode/aic7xxx/aicasm.c
index 6e792bdfad1..f48ae9d9377 100644
--- a/sys/dev/microcode/aic7xxx/aicasm.c
+++ b/sys/dev/microcode/aic7xxx/aicasm.c
@@ -1,7 +1,7 @@
-/* $NetBSD: aicasm.c,v 1.12 2021/10/25 07:41:41 ryo Exp $ */
+/* $NetBSD: aicasm.c,v 1.13 2022/05/24 20:50:19 andvar Exp $ */
/*
- * Aic7xxx SCSI host adapter firmware asssembler
+ * Aic7xxx SCSI host adapter firmware assembler
*
* Copyright (c) 1997, 1998, 2000, 2001 Justin T. Gibbs.
* Copyright (c) 2001, 2002 Adaptec Inc.
@@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: aicasm.c,v 1.12 2021/10/25 07:41:41 ryo Exp $");
+__RCSID("$NetBSD: aicasm.c,v 1.13 2022/05/24 20:50:19 andvar Exp $");
#include <sys/types.h>
#include <sys/mman.h>
@@ -179,7 +179,7 @@ main(int argc, char *argv[])
listfilename = optarg;
break;
case 'n':
- /* Don't complain about the -nostdinc directrive */
+ /* Don't complain about the -nostdinc directive */
if (strcmp(optarg, "ostdinc")) {
fprintf(stderr, "%s: Unknown option -%c%s\n",
appname, ch, optarg);
@@ -258,7 +258,7 @@ main(int argc, char *argv[])
argv += optind;
if (argc != 1) {
- fprintf(stderr, "%s: No input file specifiled\n", appname);
+ fprintf(stderr, "%s: No input file specified\n", appname);
usage();
/* NOTREACHED */
}
@@ -285,9 +285,9 @@ main(int argc, char *argv[])
/* Process outmost scope */
process_scope(SLIST_FIRST(&scope_stack));
/*
- * Decend the tree of scopes and insert/emit
+ * Descend the tree of scopes and insert/emit
* patches as appropriate. We perform a depth first
- * tranversal, recursively handling each scope.
+ * transversal, recursively handling each scope.
*/
/* start at the root scope */
dump_scope(SLIST_FIRST(&scope_stack));
diff --git a/sys/dev/microcode/aic7xxx/aicasm_symbol.c b/sys/dev/microcode/aic7xxx/aicasm_symbol.c
index 6e0dc05d69b..5bf8d8123cc 100644
--- a/sys/dev/microcode/aic7xxx/aicasm_symbol.c
+++ b/sys/dev/microcode/aic7xxx/aicasm_symbol.c
@@ -1,7 +1,7 @@
-/* $NetBSD: aicasm_symbol.c,v 1.8 2022/01/01 22:01:18 andvar Exp $ */
+/* $NetBSD: aicasm_symbol.c,v 1.9 2022/05/24 20:50:19 andvar Exp $ */
/*
- * Aic7xxx SCSI host adapter firmware asssembler symbol table implementation
+ * Aic7xxx SCSI host adapter firmware assembler symbol table implementation
*
* Copyright (c) 1997 Justin T. Gibbs.
* Copyright (c) 2002 Adaptec Inc.
@@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: aicasm_symbol.c,v 1.8 2022/01/01 22:01:18 andvar Exp $");
+__RCSID("$NetBSD: aicasm_symbol.c,v 1.9 2022/05/24 20:50:19 andvar Exp $");
#include <sys/types.h>
diff --git a/sys/dev/microcode/aic7xxx/aicasm_symbol.h b/sys/dev/microcode/aic7xxx/aicasm_symbol.h
index f198bbfcb63..328ad9e7a7f 100644
--- a/sys/dev/microcode/aic7xxx/aicasm_symbol.h
+++ b/sys/dev/microcode/aic7xxx/aicasm_symbol.h
@@ -1,7 +1,7 @@
-/* $NetBSD: aicasm_symbol.h,v 1.3 2021/10/25 07:40:29 ryo Exp $ */
+/* $NetBSD: aicasm_symbol.h,v 1.4 2022/05/24 20:50:19 andvar Exp $ */
/*
- * Aic7xxx SCSI host adapter firmware asssembler symbol table definitions
+ * Aic7xxx SCSI host adapter firmware assembler symbol table definitions
*
* Copyright (c) 1997 Justin T. Gibbs.
* Copyright (c) 2002 Adaptec Inc.
diff --git a/sys/dev/pci/if_sip.c b/sys/dev/pci/if_sip.c
index 694dd11a2c1..36ea982fb93 100644
--- a/sys/dev/pci/if_sip.c
+++ b/sys/dev/pci/if_sip.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_sip.c,v 1.185 2022/02/16 22:00:56 andvar Exp $ */
+/* $NetBSD: if_sip.c,v 1.186 2022/05/24 20:50:19 andvar Exp $ */
/*-
* Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -73,7 +73,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_sip.c,v 1.185 2022/02/16 22:00:56 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_sip.c,v 1.186 2022/05/24 20:50:19 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -1737,7 +1737,7 @@ sipcom_start(struct ifnet *ifp)
* chip's internal queue (indicated by TXE being clear),
* then the driver software must set the TXDP to the
* first descriptor to be transmitted. However, if we
- * do this, it causes serious performance degredation on
+ * do this, it causes serious performance degradation on
* the DP83820 under load, not setting TXDP doesn't seem
* to adversely affect the SiS 900 or DP83815.
*
@@ -2745,7 +2745,7 @@ sipcom_init(struct ifnet *ifp)
/*
* Checksum offloading is disabled if the user selects an MTU
- * larger than 8109. (FreeBSD says 8152, but there is emperical
+ * larger than 8109. (FreeBSD says 8152, but there is empirical
* evidence that >8109 does not work on some boards, such as the
* Planex GN-1000TE).
*/
diff --git a/sys/dev/usb/xhci.c b/sys/dev/usb/xhci.c
index 6c6b27d5916..f5fc236ce33 100644
--- a/sys/dev/usb/xhci.c
+++ b/sys/dev/usb/xhci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: xhci.c,v 1.166 2022/05/14 19:44:37 riastradh Exp $ */
+/* $NetBSD: xhci.c,v 1.167 2022/05/24 20:50:19 andvar Exp $ */
/*
* Copyright (c) 2013 Jonathan A. Kollasch
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.166 2022/05/14 19:44:37 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.167 2022/05/24 20:50:19 andvar Exp $");
#ifdef _KERNEL_OPT
#include "opt_usb.h"
@@ -2448,7 +2448,7 @@ xhci_event_transfer(struct xhci_softc * const sc,
* ux_actlen and ux_dmabuf will be passed to
* usb_transfer_complete after the Status stage event.
*
- * It can be distingished which stage generates the event:
+ * It can be distinguished which stage generates the event:
* + by checking least 3 bits of trb_0 if ED==1.
* (see xhci_device_ctrl_start).
* + by checking the type of original TRB if ED==0.