Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src fix various typos in comments and log messages.
details: https://anonhg.NetBSD.org/src/rev/de1d8ebc4607
branches: trunk
changeset: 1023037:de1d8ebc4607
user: andvar <andvar%NetBSD.org@localhost>
date: Fri Aug 20 20:25:26 2021 +0000
description:
fix various typos in comments and log messages.
diffstat:
sbin/newfs_udf/newfs_udf.c | 6 +++---
sbin/newfs_udf/udf_create.c | 6 +++---
sys/arch/acorn32/stand/boot32/start.S | 4 ++--
sys/arch/algor/conf/P5064 | 6 +++---
sys/arch/arm/iomd/vidcvideo.c | 6 +++---
sys/arch/arm/sunxi/sunxi_debe.c | 6 +++---
sys/arch/arm/sunxi/sunxi_tcon.c | 8 ++++----
sys/arch/evbmips/conf/AP30 | 6 +++---
sys/arch/evbmips/conf/DB120 | 6 +++---
sys/arch/evbmips/conf/MALTA | 6 +++---
sys/arch/evbmips/conf/MERAKI | 6 +++---
sys/arch/evbmips/conf/RB433UAH | 6 +++---
sys/arch/evbmips/conf/WGT624V3 | 6 +++---
sys/arch/evbmips/conf/XLSATX | 6 +++---
sys/arch/evbppc/virtex/dev/xlcom.c | 6 +++---
sys/arch/powerpc/powerpc/ofwreal.S | 4 ++--
sys/arch/shark/stand/ofwboot/boot.c | 4 ++--
sys/dev/dm/dm_ioctl.c | 6 +++---
sys/dev/dm/dm_table.c | 6 +++---
sys/dev/ic/ne2000.c | 6 +++---
sys/dev/mii/lxtphy.c | 6 +++---
sys/dev/pci/auixp.c | 10 +++++-----
sys/dev/pci/auixpvar.h | 4 ++--
sys/dev/pci/ixgbe/ixgbe.c | 6 +++---
sys/fs/udf/udf_allocation.c | 28 ++++++++++++++--------------
sys/fs/udf/udf_subr.c | 6 +++---
tests/fs/ffs/t_quota2_remount.c | 4 ++--
tests/net/can/t_can.c | 6 +++---
28 files changed, 93 insertions(+), 93 deletions(-)
diffs (truncated from 817 to 300 lines):
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sbin/newfs_udf/newfs_udf.c
--- a/sbin/newfs_udf/newfs_udf.c Fri Aug 20 13:20:28 2021 +0000
+++ b/sbin/newfs_udf/newfs_udf.c Fri Aug 20 20:25:26 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: newfs_udf.c,v 1.20 2020/04/05 15:25:40 joerg Exp $ */
+/* $NetBSD: newfs_udf.c,v 1.21 2021/08/20 20:25:26 andvar Exp $ */
/*
* Copyright (c) 2006, 2008, 2013 Reinoud Zandijk
@@ -391,7 +391,7 @@
/*
* only CD burning normally needs setting up, but other disc types
* might need other settings to be made. The MMC framework will set up
- * the nessisary recording parameters according to the disc
+ * the necessary recording parameters according to the disc
* characteristics read in. Modifications can be made in the discinfo
* structure passed to change the nature of the disc.
*/
@@ -865,7 +865,7 @@
printf("Metadata percentage %d %%\n", meta_perc);
printf("\n");
- /* prepare disc if nessisary (recordables mainly) */
+ /* prepare disc if necessary (recordables mainly) */
error = udf_prepare_disc();
if (error) {
perror("preparing disc failed");
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sbin/newfs_udf/udf_create.c
--- a/sbin/newfs_udf/udf_create.c Fri Aug 20 13:20:28 2021 +0000
+++ b/sbin/newfs_udf/udf_create.c Fri Aug 20 20:25:26 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_create.c,v 1.29 2021/04/13 06:25:48 mrg Exp $ */
+/* $NetBSD: udf_create.c,v 1.30 2021/08/20 20:25:26 andvar Exp $ */
/*
* Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -30,7 +30,7 @@
#endif
#include <sys/cdefs.h>
-__RCSID("$NetBSD: udf_create.c,v 1.29 2021/04/13 06:25:48 mrg Exp $");
+__RCSID("$NetBSD: udf_create.c,v 1.30 2021/08/20 20:25:26 andvar Exp $");
#include <stdio.h>
#include <stdlib.h>
@@ -276,7 +276,7 @@
/*
* Align partition LBA space to blocking granularity. Not strickly
- * nessisary for non sparables but safer for the VRS data since it is
+ * necessary for non sparables but safer for the VRS data since it is
* not updated sporadically
*/
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sys/arch/acorn32/stand/boot32/start.S
--- a/sys/arch/acorn32/stand/boot32/start.S Fri Aug 20 13:20:28 2021 +0000
+++ b/sys/arch/acorn32/stand/boot32/start.S Fri Aug 20 20:25:26 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: start.S,v 1.4 2021/02/06 21:45:38 joerg Exp $ */
+/* $NetBSD: start.S,v 1.5 2021/08/20 20:25:26 andvar Exp $ */
/*
* Copyright (c) 2002 Reinoud Zandijk
@@ -47,7 +47,7 @@
ldmfd sp!, {r8-r12}
/*
- * determine processor architecture version. This is nessisary for the
+ * determine processor architecture version. This is necessary for the
* correct coprocessor instruction.
*/
mrc p15, 0, r0, c0, c0, 0 /* read CPU id in r0 */
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sys/arch/algor/conf/P5064
--- a/sys/arch/algor/conf/P5064 Fri Aug 20 13:20:28 2021 +0000
+++ b/sys/arch/algor/conf/P5064 Fri Aug 20 20:25:26 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: P5064,v 1.94 2021/06/29 10:22:34 nia Exp $
+# $NetBSD: P5064,v 1.95 2021/08/20 20:25:27 andvar Exp $
#
# Algorithmics P-5064 kernel.
#
@@ -7,7 +7,7 @@
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "P5064-$Revision: 1.94 $"
+#ident "P5064-$Revision: 1.95 $"
maxusers 32
@@ -86,7 +86,7 @@
# Bitmask for enabling the PCI IDE channels in the southbridge.
# Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
#
-# Do this if your firmware (usually PMON) doens't enable the IDE
+# Do this if your firmware (usually PMON) doesn't enable the IDE
# channels for you (thus causing the NetBSD `pciide' driver to
# ignore them).
options PCI_NETBSD_ENABLE_IDE=0x1
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sys/arch/arm/iomd/vidcvideo.c
--- a/sys/arch/arm/iomd/vidcvideo.c Fri Aug 20 13:20:28 2021 +0000
+++ b/sys/arch/arm/iomd/vidcvideo.c Fri Aug 20 20:25:26 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vidcvideo.c,v 1.47 2021/08/07 16:18:44 thorpej Exp $ */
+/* $NetBSD: vidcvideo.c,v 1.48 2021/08/20 20:25:27 andvar Exp $ */
/*
* Copyright (c) 2001 Reinoud Zandijk
@@ -30,7 +30,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.47 2021/08/07 16:18:44 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.48 2021/08/20 20:25:27 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -804,7 +804,7 @@
ri->ri_bits = vidcvideo_hwscroll(offset);
vidcvideo_progr_scroll(); /* sadistic ; shouldnt this be on vsync? */
- /* wipe out remains of the screen if nessisary */
+ /* wipe out remains of the screen if necessary */
if (ri->ri_emuheight != ri->ri_height)
vv_eraserows(id, ri->ri_rows, 1, 0);
return;
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sys/arch/arm/sunxi/sunxi_debe.c
--- a/sys/arch/arm/sunxi/sunxi_debe.c Fri Aug 20 13:20:28 2021 +0000
+++ b/sys/arch/arm/sunxi/sunxi_debe.c Fri Aug 20 20:25:26 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sunxi_debe.c,v 1.14 2021/08/07 16:18:45 thorpej Exp $ */
+/* $NetBSD: sunxi_debe.c,v 1.15 2021/08/20 20:25:27 andvar Exp $ */
/*-
* Copyright (c) 2018 Manuel Bouyer <bouyer%antioche.eu.org@localhost>
@@ -38,7 +38,7 @@
#define SUNXI_DEBE_CURMAX 64
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunxi_debe.c,v 1.14 2021/08/07 16:18:45 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunxi_debe.c,v 1.15 2021/08/20 20:25:27 andvar Exp $");
#include <sys/param.h>
#include <sys/bus.h>
@@ -288,7 +288,7 @@
*/
if (sc->sc_unit != -1 && rep_idx != -1 &&
sc->sc_unit != rep_idx) {
- aprint_error_dev(self, ": remote id %d doens't match"
+ aprint_error_dev(self, ": remote id %d doesn't match"
" discovered unit number %d\n",
rep_idx, sc->sc_unit);
return;
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sys/arch/arm/sunxi/sunxi_tcon.c
--- a/sys/arch/arm/sunxi/sunxi_tcon.c Fri Aug 20 13:20:28 2021 +0000
+++ b/sys/arch/arm/sunxi/sunxi_tcon.c Fri Aug 20 20:25:26 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sunxi_tcon.c,v 1.12 2021/08/19 20:56:36 andvar Exp $ */
+/* $NetBSD: sunxi_tcon.c,v 1.13 2021/08/20 20:25:27 andvar Exp $ */
/*-
* Copyright (c) 2018 Manuel Bouyer <bouyer%antioche.eu.org@localhost>
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunxi_tcon.c,v 1.12 2021/08/19 20:56:36 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunxi_tcon.c,v 1.13 2021/08/20 20:25:27 andvar Exp $");
#include <sys/param.h>
#include <sys/bus.h>
@@ -268,7 +268,7 @@
*/
if (sc->sc_unit != -1 && rep_idx != -1 &&
sc->sc_unit != rep_idx) {
- aprint_error_dev(self, ": remote id %d doens't match"
+ aprint_error_dev(self, ": remote id %d doesn't match"
" discovered unit number %d\n",
rep_idx, sc->sc_unit);
return;
@@ -829,7 +829,7 @@
}
}
-/* check if this tcon is the console chosen by firmare */
+/* check if this tcon is the console chosen by firmware */
bool
sunxi_tcon_is_console(device_t dev, const char *pipeline)
{
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sys/arch/evbmips/conf/AP30
--- a/sys/arch/evbmips/conf/AP30 Fri Aug 20 13:20:28 2021 +0000
+++ b/sys/arch/evbmips/conf/AP30 Fri Aug 20 20:25:26 2021 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: AP30,v 1.41 2020/09/27 13:48:50 roy Exp $
+# $NetBSD: AP30,v 1.42 2021/08/20 20:25:27 andvar Exp $
include "arch/evbmips/conf/std.atheros"
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "AP30-$Revision: 1.41 $"
+#ident "AP30-$Revision: 1.42 $"
maxusers 32
@@ -109,7 +109,7 @@
# Bitmask for enabling the PCI IDE channels in the southbridge.
# Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
#
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
# channels for you (thus causing the NetBSD `pciide' driver to ignore them).
#options PCI_NETBSD_ENABLE_IDE=0x1
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sys/arch/evbmips/conf/DB120
--- a/sys/arch/evbmips/conf/DB120 Fri Aug 20 13:20:28 2021 +0000
+++ b/sys/arch/evbmips/conf/DB120 Fri Aug 20 20:25:26 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: DB120,v 1.24 2020/09/27 13:48:50 roy Exp $
+# $NetBSD: DB120,v 1.25 2021/08/20 20:25:27 andvar Exp $
#
# Qualcomm Atheros AR9344 DB120 evaluation board.
#
@@ -7,7 +7,7 @@
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "DB120-$Revision: 1.24 $"
+#ident "DB120-$Revision: 1.25 $"
maxusers 32
@@ -118,7 +118,7 @@
# Bitmask for enabling the PCI IDE channels in the southbridge.
# Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
#
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
# channels for you (thus causing the NetBSD `pciide' driver to ignore them).
#options PCI_NETBSD_ENABLE_IDE=0x1
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sys/arch/evbmips/conf/MALTA
--- a/sys/arch/evbmips/conf/MALTA Fri Aug 20 13:20:28 2021 +0000
+++ b/sys/arch/evbmips/conf/MALTA Fri Aug 20 20:25:26 2021 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: MALTA,v 1.103 2021/01/21 06:51:54 nia Exp $
+# $NetBSD: MALTA,v 1.104 2021/08/20 20:25:27 andvar Exp $
include "arch/evbmips/conf/std.malta"
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "MALTA-$Revision: 1.103 $"
+#ident "MALTA-$Revision: 1.104 $"
maxusers 32
@@ -110,7 +110,7 @@
# Bitmask for enabling the PCI IDE channels in the southbridge.
# Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
#
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
# channels for you (thus causing the NetBSD `pciide' driver to ignore them).
options PCI_NETBSD_ENABLE_IDE=0x1
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sys/arch/evbmips/conf/MERAKI
--- a/sys/arch/evbmips/conf/MERAKI Fri Aug 20 13:20:28 2021 +0000
+++ b/sys/arch/evbmips/conf/MERAKI Fri Aug 20 20:25:26 2021 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: MERAKI,v 1.35 2020/09/27 13:48:50 roy Exp $
+# $NetBSD: MERAKI,v 1.36 2021/08/20 20:25:27 andvar Exp $
include "arch/evbmips/conf/std.meraki"
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "MERAKI-$Revision: 1.35 $"
+#ident "MERAKI-$Revision: 1.36 $"
maxusers 32
@@ -110,7 +110,7 @@
# Bitmask for enabling the PCI IDE channels in the southbridge.
# Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
#
-# Do this if your firmware (usually PMON and YAMON) doens't enable the IDE
+# Do this if your firmware (usually PMON and YAMON) doesn't enable the IDE
# channels for you (thus causing the NetBSD `pciide' driver to ignore them).
#options PCI_NETBSD_ENABLE_IDE=0x1
diff -r 82dd40ee1fd2 -r de1d8ebc4607 sys/arch/evbmips/conf/RB433UAH
--- a/sys/arch/evbmips/conf/RB433UAH Fri Aug 20 13:20:28 2021 +0000
+++ b/sys/arch/evbmips/conf/RB433UAH Fri Aug 20 20:25:26 2021 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: RB433UAH,v 1.21 2020/09/27 13:48:50 roy Exp $
+# $NetBSD: RB433UAH,v 1.22 2021/08/20 20:25:27 andvar Exp $
include "arch/evbmips/conf/std.atheros"
Home |
Main Index |
Thread Index |
Old Index