Module Name: src
Committed By: andvar
Date: Mon Aug 9 21:20:50 UTC 2021
Modified Files:
src/sys/arch/x86/x86: intr.c
src/sys/arch/xen/x86: xen_intr.c
src/sys/dev/ic: athrate-sample.c
Log Message:
s/alway /always/
To generate a diff of this commit:
cvs rdiff -u -r1.154 -r1.155 src/sys/arch/x86/x86/intr.c
cvs rdiff -u -r1.28 -r1.29 src/sys/arch/xen/x86/xen_intr.c
cvs rdiff -u -r1.20 -r1.21 src/sys/dev/ic/athrate-sample.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/x86/x86/intr.c
diff -u src/sys/arch/x86/x86/intr.c:1.154 src/sys/arch/x86/x86/intr.c:1.155
--- src/sys/arch/x86/x86/intr.c:1.154 Fri Feb 19 05:34:37 2021
+++ src/sys/arch/x86/x86/intr.c Mon Aug 9 21:20:50 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.154 2021/02/19 05:34:37 knakahara Exp $ */
+/* $NetBSD: intr.c,v 1.155 2021/08/09 21:20:50 andvar Exp $ */
/*
* Copyright (c) 2007, 2008, 2009, 2019 The NetBSD Foundation, Inc.
@@ -133,7 +133,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.154 2021/02/19 05:34:37 knakahara Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.155 2021/08/09 21:20:50 andvar Exp $");
#include "opt_intrdebug.h"
#include "opt_multiprocessor.h"
@@ -317,7 +317,7 @@ intr_create_intrid(int legacy_irq, struc
}
/*
- * If the device is pci, "legacy_irq" is alway -1. Least 8 bit of "ih"
+ * If the device is pci, "legacy_irq" is always -1. Least 8 bit of "ih"
* is only used in intr_string() to show the irq number.
* If the device is "legacy"(such as floppy), it should not use
* intr_string().
Index: src/sys/arch/xen/x86/xen_intr.c
diff -u src/sys/arch/xen/x86/xen_intr.c:1.28 src/sys/arch/xen/x86/xen_intr.c:1.29
--- src/sys/arch/xen/x86/xen_intr.c:1.28 Sat Aug 1 12:39:40 2020
+++ src/sys/arch/xen/x86/xen_intr.c Mon Aug 9 21:20:50 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: xen_intr.c,v 1.28 2020/08/01 12:39:40 jdolecek Exp $ */
+/* $NetBSD: xen_intr.c,v 1.29 2021/08/09 21:20:50 andvar Exp $ */
/*-
* Copyright (c) 1998, 2001 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xen_intr.c,v 1.28 2020/08/01 12:39:40 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xen_intr.c,v 1.29 2021/08/09 21:20:50 andvar Exp $");
#include "opt_multiprocessor.h"
#include "opt_pci.h"
@@ -465,7 +465,7 @@ xen_intr_create_intrid(int legacy_irq, s
}
/*
- * If the device is pci, "legacy_irq" is alway -1. Least 8 bit of "ih"
+ * If the device is pci, "legacy_irq" is always -1. Least 8 bit of "ih"
* is only used in intr_string() to show the irq number.
* If the device is "legacy"(such as floppy), it should not use
* intr_string().
Index: src/sys/dev/ic/athrate-sample.c
diff -u src/sys/dev/ic/athrate-sample.c:1.20 src/sys/dev/ic/athrate-sample.c:1.21
--- src/sys/dev/ic/athrate-sample.c:1.20 Sun Nov 10 21:16:35 2019
+++ src/sys/dev/ic/athrate-sample.c Mon Aug 9 21:20:50 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: athrate-sample.c,v 1.20 2019/11/10 21:16:35 chs Exp $ */
+/* $NetBSD: athrate-sample.c,v 1.21 2021/08/09 21:20:50 andvar Exp $ */
/*-
* Copyright (c) 2005 John Bicket
@@ -41,7 +41,7 @@
__FBSDID("$FreeBSD: src/sys/dev/ath/ath_rate/sample/sample.c,v 1.9 2005/07/22 16:50:17 sam Exp $");
#endif
#ifdef __NetBSD__
-__KERNEL_RCSID(0, "$NetBSD: athrate-sample.c,v 1.20 2019/11/10 21:16:35 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: athrate-sample.c,v 1.21 2021/08/09 21:20:50 andvar Exp $");
#endif
@@ -372,7 +372,7 @@ ath_rate_setupxtxdesc(struct ath_softc *
int size_bin = 0;
int ndx = 0;
- size_bin = size_to_bin(frame_size); // TODO: it's correct that frame_size alway 0 ?
+ size_bin = size_to_bin(frame_size); // TODO: it's correct that frame_size always 0 ?
ndx = sn->current_rate[size_bin]; /* retry at the current bit-rate */
if (!sn->stats[size_bin][ndx].packets_acked) {