Module Name: src Committed By: andvar Date: Thu Feb 8 19:44:09 UTC 2024
Modified Files: src/sys/arch/bebox/stand/boot: siop.c src/sys/arch/prep/stand/boot: siop.c src/sys/dev/ic: esiop.c siop.c siop_common.c src/sys/dev/iscsi: iscsi_text.c src/sys/dev/mii: amhphy.c Log Message: s/should't/shouldn't/ and s/mistmatch/mismatch/ in comments. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/arch/bebox/stand/boot/siop.c cvs rdiff -u -r1.7 -r1.8 src/sys/arch/prep/stand/boot/siop.c cvs rdiff -u -r1.62 -r1.63 src/sys/dev/ic/esiop.c cvs rdiff -u -r1.104 -r1.105 src/sys/dev/ic/siop.c cvs rdiff -u -r1.59 -r1.60 src/sys/dev/ic/siop_common.c cvs rdiff -u -r1.14 -r1.15 src/sys/dev/iscsi/iscsi_text.c cvs rdiff -u -r1.26 -r1.27 src/sys/dev/mii/amhphy.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/bebox/stand/boot/siop.c diff -u src/sys/arch/bebox/stand/boot/siop.c:1.14 src/sys/arch/bebox/stand/boot/siop.c:1.15 --- src/sys/arch/bebox/stand/boot/siop.c:1.14 Mon Jun 19 08:40:29 2023 +++ src/sys/arch/bebox/stand/boot/siop.c Thu Feb 8 19:44:08 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: siop.c,v 1.14 2023/06/19 08:40:29 msaitoh Exp $ */ +/* $NetBSD: siop.c,v 1.15 2024/02/08 19:44:08 andvar Exp $ */ /* * Copyright (c) 2010 KIYOHARA Takashi * All rights reserved. @@ -465,7 +465,7 @@ reset: } return 1; } - /* We just should't get there */ + /* We just shouldn't get there */ panic("siop_intr: I shouldn't be there !"); return 1; Index: src/sys/arch/prep/stand/boot/siop.c diff -u src/sys/arch/prep/stand/boot/siop.c:1.7 src/sys/arch/prep/stand/boot/siop.c:1.8 --- src/sys/arch/prep/stand/boot/siop.c:1.7 Mon Jun 19 08:40:30 2023 +++ src/sys/arch/prep/stand/boot/siop.c Thu Feb 8 19:44:08 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: siop.c,v 1.7 2023/06/19 08:40:30 msaitoh Exp $ */ +/* $NetBSD: siop.c,v 1.8 2024/02/08 19:44:08 andvar Exp $ */ /* * Copyright (c) 2010 KIYOHARA Takashi * All rights reserved. @@ -444,7 +444,7 @@ reset: } return 1; } - /* We just should't get there */ + /* We just shouldn't get there */ panic("siop_intr: I shouldn't be there !"); return 1; Index: src/sys/dev/ic/esiop.c diff -u src/sys/dev/ic/esiop.c:1.62 src/sys/dev/ic/esiop.c:1.63 --- src/sys/dev/ic/esiop.c:1.62 Wed Nov 2 12:03:44 2022 +++ src/sys/dev/ic/esiop.c Thu Feb 8 19:44:08 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: esiop.c,v 1.62 2022/11/02 12:03:44 andvar Exp $ */ +/* $NetBSD: esiop.c,v 1.63 2024/02/08 19:44:08 andvar Exp $ */ /* * Copyright (c) 2002 Manuel Bouyer. @@ -28,7 +28,7 @@ /* SYM53c7/8xx PCI-SCSI I/O Processors driver */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.62 2022/11/02 12:03:44 andvar Exp $"); +__KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.63 2024/02/08 19:44:08 andvar Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -1101,7 +1101,7 @@ scintr: return 1; } /* - * We just should't get there, but on some KVM virtual hosts, + * We just shouldn't get there, but on some KVM virtual hosts, * we do - see PR 48277. */ printf("esiop_intr: I shouldn't be there !\n"); Index: src/sys/dev/ic/siop.c diff -u src/sys/dev/ic/siop.c:1.104 src/sys/dev/ic/siop.c:1.105 --- src/sys/dev/ic/siop.c:1.104 Wed Nov 2 12:03:44 2022 +++ src/sys/dev/ic/siop.c Thu Feb 8 19:44:08 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: siop.c,v 1.104 2022/11/02 12:03:44 andvar Exp $ */ +/* $NetBSD: siop.c,v 1.105 2024/02/08 19:44:08 andvar Exp $ */ /* * Copyright (c) 2000 Manuel Bouyer. @@ -28,7 +28,7 @@ /* SYM53c7/8xx PCI-SCSI I/O Processors driver */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.104 2022/11/02 12:03:44 andvar Exp $"); +__KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.105 2024/02/08 19:44:08 andvar Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -969,7 +969,7 @@ scintr: return 1; } /* - * We just should't get there, but on some KVM virtual hosts, + * We just shouldn't get there, but on some KVM virtual hosts, * we do - see PR 48277. */ printf("siop_intr: I shouldn't be there !\n"); Index: src/sys/dev/ic/siop_common.c diff -u src/sys/dev/ic/siop_common.c:1.59 src/sys/dev/ic/siop_common.c:1.60 --- src/sys/dev/ic/siop_common.c:1.59 Sun Sep 25 18:43:32 2022 +++ src/sys/dev/ic/siop_common.c Thu Feb 8 19:44:08 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: siop_common.c,v 1.59 2022/09/25 18:43:32 thorpej Exp $ */ +/* $NetBSD: siop_common.c,v 1.60 2024/02/08 19:44:08 andvar Exp $ */ /* * Copyright (c) 2000, 2002 Manuel Bouyer. @@ -28,7 +28,7 @@ /* SYM53c7/8xx PCI-SCSI I/O Processors driver */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: siop_common.c,v 1.59 2022/09/25 18:43:32 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: siop_common.c,v 1.60 2024/02/08 19:44:08 andvar Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -434,7 +434,7 @@ siop_ppr_neg(struct siop_common_cmd *sio offset = tables->msg_in[5]; options = tables->msg_in[7]; if (options != MSG_EXT_PPR_DT) { - /* should't happen */ + /* shouldn't happen */ printf("%s: ppr negotiation for target %d: " "no DT option\n", device_xname(sc->sc_dev), target); siop_target->status = TARST_ASYNC; @@ -910,7 +910,7 @@ siop_iwr(struct siop_common_cmd *siop_cm } else { /* * now we really had a short xfer, by one byte. - * handle it just as if we had a phase mistmatch + * handle it just as if we had a phase mismatch * (there is a resid of one for this table). * Update scratcha1 to reflect the fact that * this xfer isn't complete. Index: src/sys/dev/iscsi/iscsi_text.c diff -u src/sys/dev/iscsi/iscsi_text.c:1.14 src/sys/dev/iscsi/iscsi_text.c:1.15 --- src/sys/dev/iscsi/iscsi_text.c:1.14 Sat Nov 25 10:08:27 2023 +++ src/sys/dev/iscsi/iscsi_text.c Thu Feb 8 19:44:08 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: iscsi_text.c,v 1.14 2023/11/25 10:08:27 mlelstv Exp $ */ +/* $NetBSD: iscsi_text.c,v 1.15 2024/02/08 19:44:08 andvar Exp $ */ /*- * Copyright (c) 2005,2006,2011 The NetBSD Foundation, Inc. @@ -744,7 +744,7 @@ put_parameter(uint8_t *buf, unsigned len default: cl = 0; - /* We should't be here... */ + /* We shouldn't be here... */ DEBOUT(("Invalid type %d in put_parameter!\n", entries[par->key].val)); break; @@ -866,7 +866,7 @@ parameter_size(negotiation_parameter_t * break; default: - /* We should't be here... */ + /* We shouldn't be here... */ DEBOUT(("Invalid type %d in parameter_size!\n", entries[par->key].val)); break; Index: src/sys/dev/mii/amhphy.c diff -u src/sys/dev/mii/amhphy.c:1.26 src/sys/dev/mii/amhphy.c:1.27 --- src/sys/dev/mii/amhphy.c:1.26 Sun Mar 15 23:04:50 2020 +++ src/sys/dev/mii/amhphy.c Thu Feb 8 19:44:08 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: amhphy.c,v 1.26 2020/03/15 23:04:50 thorpej Exp $ */ +/* $NetBSD: amhphy.c,v 1.27 2024/02/08 19:44:08 andvar Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -40,7 +40,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: amhphy.c,v 1.26 2020/03/15 23:04:50 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: amhphy.c,v 1.27 2024/02/08 19:44:08 andvar Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -214,7 +214,7 @@ amhphy_status(struct mii_softc *sc) if (ssr & SSR_S) { /* - * This should't really ever happen, since it's + * This shouldn't really ever happen, since it's * a 10BASE-T only PHY. But the bit exists, according * to the documentation, so we pay attention to it. */