Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/usb fix tripple "p" (ppp) to double "p" (pp) in some...
details: https://anonhg.NetBSD.org/src/rev/f7ec2949be97
branches: trunk
changeset: 377528:f7ec2949be97
user: andvar <andvar%NetBSD.org@localhost>
date: Sat Jul 15 21:41:25 2023 +0000
description:
fix tripple "p" (ppp) to double "p" (pp) in some words in comments.
diffstat:
sys/arch/hpc/stand/libsa/winblk.c | 4 ++--
sys/arch/hpcmips/stand/libsa/winblk.c | 4 ++--
sys/dev/pci/ixgbe/ixgbe_dcb_82599.c | 8 ++++----
sys/dev/usb/usbnet.c | 6 +++---
4 files changed, 11 insertions(+), 11 deletions(-)
diffs (99 lines):
diff -r 93c00ed13933 -r f7ec2949be97 sys/arch/hpc/stand/libsa/winblk.c
--- a/sys/arch/hpc/stand/libsa/winblk.c Sat Jul 15 21:40:03 2023 +0000
+++ b/sys/arch/hpc/stand/libsa/winblk.c Sat Jul 15 21:41:25 2023 +0000
@@ -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) {
diff -r 93c00ed13933 -r f7ec2949be97 sys/arch/hpcmips/stand/libsa/winblk.c
--- a/sys/arch/hpcmips/stand/libsa/winblk.c Sat Jul 15 21:40:03 2023 +0000
+++ b/sys/arch/hpcmips/stand/libsa/winblk.c Sat Jul 15 21:41:25 2023 +0000
@@ -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) {
diff -r 93c00ed13933 -r f7ec2949be97 sys/dev/pci/ixgbe/ixgbe_dcb_82599.c
--- a/sys/dev/pci/ixgbe/ixgbe_dcb_82599.c Sat Jul 15 21:40:03 2023 +0000
+++ b/sys/dev/pci/ixgbe/ixgbe_dcb_82599.c Sat Jul 15 21:41:25 2023 +0000
@@ -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.
*/
diff -r 93c00ed13933 -r f7ec2949be97 sys/dev/usb/usbnet.c
--- a/sys/dev/usb/usbnet.c Sat Jul 15 21:40:03 2023 +0000
+++ b/sys/dev/usb/usbnet.c Sat Jul 15 21:41:25 2023 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index