summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2022-11-02 20:38:21 +0000
committerandvar <andvar@NetBSD.org>2022-11-02 20:38:21 +0000
commitf041dd238d8ee7bde85e7dc79cecb0b2cfe828e8 (patch)
tree1bb9fcaf9cd1dffc76a4423f2d0581227bff985c /sys/dev
parent6469ec7ba7b94950f6931a45486e3aa9735f28f3 (diff)
fix various typos in comments and messages.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/isa/madreg.h4
-rw-r--r--sys/dev/isa/wbsio.c4
-rw-r--r--sys/dev/marvell/gtmpsc.c6
-rw-r--r--sys/dev/pci/if_aq.c6
4 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/isa/madreg.h b/sys/dev/isa/madreg.h
index 7baa9141daa..87dda8dec37 100644
--- a/sys/dev/isa/madreg.h
+++ b/sys/dev/isa/madreg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: madreg.h,v 1.5 1998/12/08 14:26:57 augustss Exp $ */
+/* $NetBSD: madreg.h,v 1.6 2022/11/02 20:38:22 andvar Exp $ */
/*
* Copyright (c) 1996 Lennart Augustsson
* Copyright (c) 1995 Hannu Savolainen
@@ -36,7 +36,7 @@
*/
/*
- * Variations of the suppored chips.
+ * Variations of the supported chips.
*/
#define MAD_NONE 0
diff --git a/sys/dev/isa/wbsio.c b/sys/dev/isa/wbsio.c
index 9e40088ad16..7f7e6aa4032 100644
--- a/sys/dev/isa/wbsio.c
+++ b/sys/dev/isa/wbsio.c
@@ -1,4 +1,4 @@
-/* $NetBSD: wbsio.c,v 1.28 2022/10/01 07:22:55 msaitoh Exp $ */
+/* $NetBSD: wbsio.c,v 1.29 2022/11/02 20:38:22 andvar Exp $ */
/* $OpenBSD: wbsio.c,v 1.10 2015/03/14 03:38:47 jsg Exp $ */
/*
* Copyright (c) 2008 Mark Kettenis <kettenis@openbsd.org>
@@ -827,7 +827,7 @@ wbsio_wdog_attach(device_t self)
case WBSIO_ID_NCT6779D:
break;
default:
- /* WDT is not supoorted */
+ /* WDT is not supported */
return;
}
diff --git a/sys/dev/marvell/gtmpsc.c b/sys/dev/marvell/gtmpsc.c
index 3f9252f3cbb..4e11829e1f8 100644
--- a/sys/dev/marvell/gtmpsc.c
+++ b/sys/dev/marvell/gtmpsc.c
@@ -1,4 +1,4 @@
-/* $NetBSD: gtmpsc.c,v 1.47 2018/09/03 16:29:31 riastradh Exp $ */
+/* $NetBSD: gtmpsc.c,v 1.48 2022/11/02 20:38:22 andvar Exp $ */
/*
* Copyright (c) 2009 KIYOHARA Takashi
* All rights reserved.
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gtmpsc.c,v 1.47 2018/09/03 16:29:31 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gtmpsc.c,v 1.48 2022/11/02 20:38:22 andvar Exp $");
#include "opt_kgdb.h"
@@ -1331,7 +1331,7 @@ gtmpsccnattach(bus_space_tag_t iot, bus_dma_tag_t dmat, bus_addr_t base,
}
/*
- * gtmpsc_hackinit - hacks required to supprt GTMPSC console
+ * gtmpsc_hackinit - hacks required to support GTMPSC console
*/
STATIC int
gtmpsc_hackinit(struct gtmpsc_softc *sc, bus_space_tag_t iot,
diff --git a/sys/dev/pci/if_aq.c b/sys/dev/pci/if_aq.c
index 697b20eb638..39b95a2392f 100644
--- a/sys/dev/pci/if_aq.c
+++ b/sys/dev/pci/if_aq.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_aq.c,v 1.38 2022/10/21 09:29:32 riastradh Exp $ */
+/* $NetBSD: if_aq.c,v 1.39 2022/11/02 20:38:22 andvar Exp $ */
/**
* aQuantia Corporation Network Driver
@@ -62,7 +62,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.38 2022/10/21 09:29:32 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.39 2022/11/02 20:38:22 andvar Exp $");
#ifdef _KERNEL_OPT
#include "opt_if_aq.h"
@@ -92,7 +92,7 @@ __KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.38 2022/10/21 09:29:32 riastradh Exp $")
/* driver configuration */
#define CONFIG_INTR_MODERATION_ENABLE true /* delayed interrupt */
-#undef CONFIG_LRO_SUPPORT /* no LRO not suppoted */
+#undef CONFIG_LRO_SUPPORT /* no LRO not supported */
#undef CONFIG_NO_TXRX_INDEPENDENT /* share TX/RX interrupts */
#define AQ_NINTR_MAX (AQ_RSSQUEUE_MAX + AQ_RSSQUEUE_MAX + 1)