summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2023-06-02 08:51:46 +0000
committerandvar <andvar@NetBSD.org>2023-06-02 08:51:46 +0000
commit7d0e1a6857dcbf5ffd8fcd0e112124619dda2c69 (patch)
treed40c808eafe10cde1b51826a014a15d197142367 /sys/dev
parenta24a59f572d6e4678904c562141927c4d3ab8482 (diff)
follow the steps of Andrew Doran (ad) commit and fix more s/loose/lose/ typos.
also s/beyound/beyond/ and few others along the way, mainly in comments.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/mb86960.c6
-rw-r--r--sys/dev/pci/if_sip.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/ic/mb86960.c b/sys/dev/ic/mb86960.c
index d0807f9d737..cd0d1b42fc7 100644
--- a/sys/dev/ic/mb86960.c
+++ b/sys/dev/ic/mb86960.c
@@ -1,4 +1,4 @@
-/* $NetBSD: mb86960.c,v 1.96 2021/07/31 14:36:33 andvar Exp $ */
+/* $NetBSD: mb86960.c,v 1.97 2023/06/02 08:51:47 andvar Exp $ */
/*
* All Rights Reserved, Copyright (C) Fujitsu Limited 1995
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mb86960.c,v 1.96 2021/07/31 14:36:33 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mb86960.c,v 1.97 2023/06/02 08:51:47 andvar Exp $");
/*
* Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards.
@@ -674,7 +674,7 @@ mb86960_start(struct ifnet *ifp)
* If txb_count is incorrect, leaving it as is will cause
* sending of garbage after the next interrupt. We have to
* avoid it. Hence, we reset the txb_count here. If
- * txb_free was incorrect, resetting txb_count just loose
+ * txb_free was incorrect, resetting txb_count just lose
* some packets. We can live with it.
*/
sc->txb_count = 0;
diff --git a/sys/dev/pci/if_sip.c b/sys/dev/pci/if_sip.c
index 5f20d155274..5b13ef463f6 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.189 2022/09/24 18:12:42 thorpej Exp $ */
+/* $NetBSD: if_sip.c,v 1.190 2023/06/02 08:51:47 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.189 2022/09/24 18:12:42 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_sip.c,v 1.190 2023/06/02 08:51:47 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -258,7 +258,7 @@ struct sip_softc {
struct evcnt sc_ev_txpause; /* PAUSE transmitted */
struct evcnt sc_ev_rxipsum; /* IP checksums checked in-bound */
struct evcnt sc_ev_rxtcpsum; /* TCP checksums checked in-bound */
- struct evcnt sc_ev_rxudpsum; /* UDP checksums checked in-boudn */
+ struct evcnt sc_ev_rxudpsum; /* UDP checksums checked in-bound */
struct evcnt sc_ev_txipsum; /* IP checksums comp. out-bound */
struct evcnt sc_ev_txtcpsum; /* TCP checksums comp. out-bound */
struct evcnt sc_ev_txudpsum; /* UDP checksums comp. out-bound */