Module Name: src
Committed By: andvar
Date: Sat Jul 15 21:41:26 UTC 2023
Modified Files:
src/sys/arch/hpc/stand/libsa: winblk.c
src/sys/arch/hpcmips/stand/libsa: winblk.c
src/sys/dev/pci/ixgbe: ixgbe_dcb_82599.c
src/sys/dev/usb: usbnet.c
Log Message:
fix tripple "p" (ppp) to double "p" (pp) in some words in comments.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/hpc/stand/libsa/winblk.c
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/hpcmips/stand/libsa/winblk.c
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/pci/ixgbe/ixgbe_dcb_82599.c
cvs rdiff -u -r1.113 -r1.114 src/sys/dev/usb/usbnet.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/hpc/stand/libsa/winblk.c
diff -u src/sys/arch/hpc/stand/libsa/winblk.c:1.7 src/sys/arch/hpc/stand/libsa/winblk.c:1.8
--- src/sys/arch/hpc/stand/libsa/winblk.c:1.7 Fri Sep 23 16:00:15 2011
+++ src/sys/arch/hpc/stand/libsa/winblk.c Sat Jul 15 21:41:25 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: winblk.c,v 1.7 2011/09/23 16:00:15 nonaka Exp $ */
+/* $NetBSD: winblk.c,v 1.8 2023/07/15 21:41:25 andvar Exp $ */
/*-
* Copyright (c) 1999 Shin Takemura.
@@ -134,7 +134,7 @@ winblkopen(struct open_file *f, ...)
va_end(ap);
/*
- * Windows' device name must be 3 uppper letters and 1 digit
+ * Windows' device name must be 3 upper letters and 1 digit
* following a semicolon like "DSK1:".
*/
if (strlen(devname) != 3 || unit < 0 || 9 < unit) {
Index: src/sys/arch/hpcmips/stand/libsa/winblk.c
diff -u src/sys/arch/hpcmips/stand/libsa/winblk.c:1.9 src/sys/arch/hpcmips/stand/libsa/winblk.c:1.10
--- src/sys/arch/hpcmips/stand/libsa/winblk.c:1.9 Sat Mar 14 21:04:09 2009
+++ src/sys/arch/hpcmips/stand/libsa/winblk.c Sat Jul 15 21:41:25 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: winblk.c,v 1.9 2009/03/14 21:04:09 dsl Exp $ */
+/* $NetBSD: winblk.c,v 1.10 2023/07/15 21:41:25 andvar Exp $ */
/*-
* Copyright (c) 1999 Shin Takemura.
@@ -133,7 +133,7 @@ winblkopen(struct open_file *f, ...)
va_end(ap);
/*
- * Windows' device name must be 3 uppper letters and 1 digit
+ * Windows' device name must be 3 upper letters and 1 digit
* following a semicolon like "DSK1:".
*/
if (strlen(devname) != 3 || unit < 0 || 9 < unit) {
Index: src/sys/dev/pci/ixgbe/ixgbe_dcb_82599.c
diff -u src/sys/dev/pci/ixgbe/ixgbe_dcb_82599.c:1.11 src/sys/dev/pci/ixgbe/ixgbe_dcb_82599.c:1.12
--- src/sys/dev/pci/ixgbe/ixgbe_dcb_82599.c:1.11 Fri Dec 24 05:02:11 2021
+++ src/sys/dev/pci/ixgbe/ixgbe_dcb_82599.c Sat Jul 15 21:41:26 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: ixgbe_dcb_82599.c,v 1.11 2021/12/24 05:02:11 msaitoh Exp $ */
+/* $NetBSD: ixgbe_dcb_82599.c,v 1.12 2023/07/15 21:41:26 andvar Exp $ */
/******************************************************************************
SPDX-License-Identifier: BSD-3-Clause
@@ -35,7 +35,7 @@
/*$FreeBSD: head/sys/dev/ixgbe/ixgbe_dcb_82599.c 331224 2018-03-19 20:55:05Z erj $*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ixgbe_dcb_82599.c,v 1.11 2021/12/24 05:02:11 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ixgbe_dcb_82599.c,v 1.12 2023/07/15 21:41:26 andvar Exp $");
#include "ixgbe_type.h"
#include "ixgbe_dcb.h"
@@ -140,7 +140,7 @@ s32 ixgbe_dcb_config_rx_arbiter_82599(st
/*
* map all UPs to TCs. up_to_tc_bitmap for each TC has corresponding
- * bits sets for the UPs that needs to be mappped to that TC.
+ * bits sets for the UPs that needs to be mapped to that TC.
* e.g if priorities 6 and 7 are to be mapped to a TC then the
* up_to_tc_bitmap value for that TC will be 11000000 in binary.
*/
@@ -251,7 +251,7 @@ s32 ixgbe_dcb_config_tx_data_arbiter_825
/*
* map all UPs to TCs. up_to_tc_bitmap for each TC has corresponding
- * bits sets for the UPs that needs to be mappped to that TC.
+ * bits sets for the UPs that needs to be mapped to that TC.
* e.g if priorities 6 and 7 are to be mapped to a TC then the
* up_to_tc_bitmap value for that TC will be 11000000 in binary.
*/
Index: src/sys/dev/usb/usbnet.c
diff -u src/sys/dev/usb/usbnet.c:1.113 src/sys/dev/usb/usbnet.c:1.114
--- src/sys/dev/usb/usbnet.c:1.113 Thu Sep 22 07:02:21 2022
+++ src/sys/dev/usb/usbnet.c Sat Jul 15 21:41:26 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: usbnet.c,v 1.113 2022/09/22 07:02:21 riastradh Exp $ */
+/* $NetBSD: usbnet.c,v 1.114 2023/07/15 21:41:26 andvar Exp $ */
/*
* Copyright (c) 2019 Matthew R. Green
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usbnet.c,v 1.113 2022/09/22 07:02:21 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usbnet.c,v 1.114 2023/07/15 21:41:26 andvar Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
@@ -1402,7 +1402,7 @@ usbnet_empty_eaddr(struct usbnet * const
* are connected and commands can be sent), and the second connects the
* device to the system networking.
*
- * Always call usbnet_detach(), even if usbnet_attach_ifp() is skippped.
+ * Always call usbnet_detach(), even if usbnet_attach_ifp() is skipped.
* Also usable as driver detach directly.
*
* To skip ethernet configuration (eg, point-to-point), make sure that