Module Name: src Committed By: andvar Date: Sun Jun 2 19:27:12 UTC 2024
Modified Files: src/sys/arch/macppc/dev: esp.c src/sys/dev/pci: if_iavf.c Log Message: s/interuppts/interrupts/ and s/intruppts/interrupts/ in comment and log message. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/sys/arch/macppc/dev/esp.c cvs rdiff -u -r1.16 -r1.17 src/sys/dev/pci/if_iavf.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/macppc/dev/esp.c diff -u src/sys/arch/macppc/dev/esp.c:1.34 src/sys/arch/macppc/dev/esp.c:1.35 --- src/sys/arch/macppc/dev/esp.c:1.34 Wed Dec 20 15:29:04 2023 +++ src/sys/arch/macppc/dev/esp.c Sun Jun 2 19:27:12 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: esp.c,v 1.34 2023/12/20 15:29:04 thorpej Exp $ */ +/* $NetBSD: esp.c,v 1.35 2024/06/02 19:27:12 andvar Exp $ */ /*- * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. @@ -70,7 +70,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: esp.c,v 1.34 2023/12/20 15:29:04 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: esp.c,v 1.35 2024/06/02 19:27:12 andvar Exp $"); #include <sys/types.h> #include <sys/param.h> @@ -230,7 +230,7 @@ espattach(device_t parent, device_t self sc->sc_maxxfer = 64 * 1024; - /* and the interuppts */ + /* and the interrupts */ intr_establish_xname(esc->sc_pri, IST_EDGE, IPL_BIO, ncr53c9x_intr, sc, device_xname(self)); Index: src/sys/dev/pci/if_iavf.c diff -u src/sys/dev/pci/if_iavf.c:1.16 src/sys/dev/pci/if_iavf.c:1.17 --- src/sys/dev/pci/if_iavf.c:1.16 Fri Jun 17 06:18:09 2022 +++ src/sys/dev/pci/if_iavf.c Sun Jun 2 19:27:12 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: if_iavf.c,v 1.16 2022/06/17 06:18:09 yamaguchi Exp $ */ +/* $NetBSD: if_iavf.c,v 1.17 2024/06/02 19:27:12 andvar Exp $ */ /* * Copyright (c) 2013-2015, Intel Corporation @@ -75,7 +75,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_iavf.c,v 1.16 2022/06/17 06:18:09 yamaguchi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_iavf.c,v 1.17 2024/06/02 19:27:12 andvar Exp $"); #include <sys/param.h> #include <sys/types.h> @@ -1780,7 +1780,7 @@ iavf_setup_interrupts(struct iavf_softc IAVF_LOG(sc, LOG_ERR, "couldn't allocate interrupts\n"); } else if (counts[PCI_INTR_TYPE_MSIX] != (int)num) { IAVF_LOG(sc, LOG_DEBUG, - "request %u intruppts, but allocate %d interrupts\n", + "request %u interrupts, but allocate %d interrupts\n", num, counts[PCI_INTR_TYPE_MSIX]); num = counts[PCI_INTR_TYPE_MSIX]; }