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 various typos, mainly in comments.



details:   https://anonhg.NetBSD.org/src/rev/958872744286
branches:  trunk
changeset: 1029192:958872744286
user:      andvar <andvar%NetBSD.org@localhost>
date:      Sun Dec 26 16:08:19 2021 +0000

description:
fix various typos, mainly in comments.

diffstat:

 share/man/man4/man4.amiga/xsh.4       |  4 ++--
 sys/arch/amiga/dev/grf_cl.c           |  6 +++---
 sys/arch/amiga/dev/grf_cv.c           |  6 +++---
 sys/arch/amiga/dev/grf_cv3d.c         |  6 +++---
 sys/arch/amiga/dev/grf_et.c           |  6 +++---
 sys/arch/arm/iomd/vidcvideo.c         |  6 +++---
 sys/arch/arm/xscale/pxa2x0reg.h       |  4 ++--
 sys/arch/evbmips/conf/CPMBR1400       |  4 ++--
 sys/arch/evbmips/conf/LINKITSMART7688 |  4 ++--
 sys/arch/evbmips/conf/ZYXELKX         |  4 ++--
 sys/arch/ews4800mips/conf/GENERIC     |  6 +++---
 sys/arch/hpcarm/conf/NETBOOKPRO       |  6 +++---
 sys/arch/i386/include/frame.h         |  4 ++--
 sys/arch/luna68k/conf/files.luna68k   |  4 ++--
 sys/arch/macppc/conf/POWERMAC_G5      |  2 +-
 sys/arch/pmax/ibus/siivar.h           |  4 ++--
 sys/dev/pci/cmdide.c                  |  8 ++++----
 sys/dev/pci/pciidevar.h               |  4 ++--
 sys/dev/usb/ukbd.c                    |  6 +++---
 19 files changed, 47 insertions(+), 47 deletions(-)

diffs (truncated from 427 to 300 lines):

diff -r 836399e19072 -r 958872744286 share/man/man4/man4.amiga/xsh.4
--- a/share/man/man4/man4.amiga/xsh.4   Sun Dec 26 15:36:49 2021 +0000
+++ b/share/man/man4/man4.amiga/xsh.4   Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: xsh.4,v 1.10 2017/02/18 22:39:00 wiz Exp $
+.\" $NetBSD: xsh.4,v 1.11 2021/12/26 16:08:19 andvar Exp $
 .\"
 .\" Copyright (c) 2013 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -42,7 +42,7 @@
 .Nm
 driver provides support for ethernet interface present on the Individual
 Computers X-Surf 100 card.
-It acts as a bus attachment layer for the machine idependent
+It acts as a bus attachment layer for the machine independent
 .Xr ne 4
 driver, which supports the AX88796 chip.
 .Sh HARDWARE
diff -r 836399e19072 -r 958872744286 sys/arch/amiga/dev/grf_cl.c
--- a/sys/arch/amiga/dev/grf_cl.c       Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/amiga/dev/grf_cl.c       Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: grf_cl.c,v 1.53 2021/10/04 20:48:05 andvar Exp $ */
+/*     $NetBSD: grf_cl.c,v 1.54 2021/12/26 16:08:19 andvar Exp $ */
 
 /*
  * Copyright (c) 1997 Klaus Burkert
@@ -36,7 +36,7 @@
 #include "opt_amigacons.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: grf_cl.c,v 1.53 2021/10/04 20:48:05 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: grf_cl.c,v 1.54 2021/12/26 16:08:19 andvar Exp $");
 
 #include "grfcl.h"
 #include "ite.h"
@@ -2124,7 +2124,7 @@
                return cl_get_fbinfo(gp, data);
        }
 
-       /* handle this command hw-independant in grf(4) */
+       /* handle this command hw-independent in grf(4) */
        return grf_wsioctl(v, vs, cmd, data, flag, l);
 }
 
diff -r 836399e19072 -r 958872744286 sys/arch/amiga/dev/grf_cv.c
--- a/sys/arch/amiga/dev/grf_cv.c       Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/amiga/dev/grf_cv.c       Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: grf_cv.c,v 1.61 2021/08/07 16:18:41 thorpej Exp $ */
+/*     $NetBSD: grf_cv.c,v 1.62 2021/12/26 16:08:19 andvar Exp $ */
 
 /*
  * Copyright (c) 1995 Michael Teske
@@ -33,7 +33,7 @@
 #include "opt_amigacons.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: grf_cv.c,v 1.61 2021/08/07 16:18:41 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: grf_cv.c,v 1.62 2021/12/26 16:08:19 andvar Exp $");
 
 #include "grfcv.h"
 #include "ite.h"
@@ -2511,7 +2511,7 @@
                return cv_get_fbinfo(gp, data);
        }
 
-       /* handle this command hw-independant in grf(4) */
+       /* handle this command hw-independent in grf(4) */
        return grf_wsioctl(v, vs, cmd, data, flag, l);
 }
 
diff -r 836399e19072 -r 958872744286 sys/arch/amiga/dev/grf_cv3d.c
--- a/sys/arch/amiga/dev/grf_cv3d.c     Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/amiga/dev/grf_cv3d.c     Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: grf_cv3d.c,v 1.36 2021/08/07 16:18:41 thorpej Exp $ */
+/*     $NetBSD: grf_cv3d.c,v 1.37 2021/12/26 16:08:19 andvar Exp $ */
 
 /*
  * Copyright (c) 1995 Michael Teske
@@ -33,7 +33,7 @@
 #include "opt_amigacons.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: grf_cv3d.c,v 1.36 2021/08/07 16:18:41 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: grf_cv3d.c,v 1.37 2021/12/26 16:08:19 andvar Exp $");
 
 #include "grfcv3d.h"
 #include "ite.h"
@@ -2365,7 +2365,7 @@
                return cv3d_get_fbinfo(gp, data);
        }
 
-       /* handle this command hw-independant in grf(4) */
+       /* handle this command hw-independent in grf(4) */
        return grf_wsioctl(v, vs, cmd, data, flag, l);
 }
 
diff -r 836399e19072 -r 958872744286 sys/arch/amiga/dev/grf_et.c
--- a/sys/arch/amiga/dev/grf_et.c       Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/amiga/dev/grf_et.c       Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: grf_et.c,v 1.38 2021/08/07 16:18:41 thorpej Exp $ */
+/*     $NetBSD: grf_et.c,v 1.39 2021/12/26 16:08:19 andvar Exp $ */
 
 /*
  * Copyright (c) 1997 Klaus Burkert
@@ -37,7 +37,7 @@
 #include "opt_amigacons.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: grf_et.c,v 1.38 2021/08/07 16:18:41 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: grf_et.c,v 1.39 2021/12/26 16:08:19 andvar Exp $");
 
 #include "grfet.h"
 #include "ite.h"
@@ -1954,7 +1954,7 @@
                return et_get_fbinfo(gp, data);
        }
 
-       /* handle this command hw-independant in grf(4) */
+       /* handle this command hw-independent in grf(4) */
        return grf_wsioctl(v, vs, cmd, data, flag, l);
 }
 
diff -r 836399e19072 -r 958872744286 sys/arch/arm/iomd/vidcvideo.c
--- a/sys/arch/arm/iomd/vidcvideo.c     Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/arm/iomd/vidcvideo.c     Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vidcvideo.c,v 1.48 2021/08/20 20:25:27 andvar Exp $ */
+/* $NetBSD: vidcvideo.c,v 1.49 2021/12/26 16:08:20 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.48 2021/08/20 20:25:27 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.49 2021/12/26 16:08:20 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -56,7 +56,7 @@
 #include <arm/arm32/pmap.h>
 #include <arm/cpufunc.h>
 
-/* for vidc_mode ... needs to be MI indepenent one day */
+/* for vidc_mode ... needs to be MI independent one day */
 #include <arm/iomd/vidc.h>
 #include <arm/iomd/vidc20config.h>
 #include <arm/iomd/vidcvideo.h>
diff -r 836399e19072 -r 958872744286 sys/arch/arm/xscale/pxa2x0reg.h
--- a/sys/arch/arm/xscale/pxa2x0reg.h   Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/arm/xscale/pxa2x0reg.h   Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pxa2x0reg.h,v 1.25 2021/12/05 07:56:10 msaitoh Exp $ */
+/* $NetBSD: pxa2x0reg.h,v 1.26 2021/12/26 16:08:20 andvar Exp $ */
 
 /*
  * Copyright (c) 2002  Genetec Corporation.  All rights reserved.
@@ -94,7 +94,7 @@
 #define PXA2X0_I2S_SIZE                0x84
 #define PXA2X0_AC97_BASE       0x40500000 /* AC '97 Controller */
 #define PXA2X0_AC97_SIZE       0x600
-#define PXA2X0_USBDC_BASE      0x40600000 /* USB Client Contoller */
+#define PXA2X0_USBDC_BASE      0x40600000 /* USB Client Controller */
 #define PXA250_USBDC_SIZE      0xe04
 #define PXA270_USBDC_SIZE      0x460
 #define PXA2X0_STUART_BASE     0x40700000 /* Standard UART */
diff -r 836399e19072 -r 958872744286 sys/arch/evbmips/conf/CPMBR1400
--- a/sys/arch/evbmips/conf/CPMBR1400   Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/evbmips/conf/CPMBR1400   Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: CPMBR1400,v 1.34 2021/01/21 06:51:54 nia Exp $
+#      $NetBSD: CPMBR1400,v 1.35 2021/12/26 16:08:20 andvar Exp $
 
 include        "arch/evbmips/conf/std.rasoc"
 
@@ -85,7 +85,7 @@
 # File system options
 #options       QUOTA           # UFS quotas
 #options       DISKLABEL_EI    # disklabel Endian Independent support
-#options       FFS_EI          # FFS Endian Independant support
+#options       FFS_EI          # FFS Endian Independent support
 #options       NFSSERVER       # Network File System server
 options        FFS_NO_SNAPSHOT # No FF snapshot support
 #options       EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and immutable) behave as system flags.
diff -r 836399e19072 -r 958872744286 sys/arch/evbmips/conf/LINKITSMART7688
--- a/sys/arch/evbmips/conf/LINKITSMART7688     Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/evbmips/conf/LINKITSMART7688     Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: LINKITSMART7688,v 1.16 2021/01/21 06:51:54 nia Exp $
+#      $NetBSD: LINKITSMART7688,v 1.17 2021/12/26 16:08:20 andvar Exp $
 #
 # MediaTek MT7688
 #
@@ -88,7 +88,7 @@
 # File system options
 #options       QUOTA           # UFS quotas
 #options       DISKLABEL_EI    # disklabel Endian Independent support
-#options       FFS_EI          # FFS Endian Independant support
+#options       FFS_EI          # FFS Endian Independent support
 #options       NFSSERVER       # Network File System server
 options        FFS_NO_SNAPSHOT # No FF snapshot support
 #options       EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and immutable) behave as system flags.
diff -r 836399e19072 -r 958872744286 sys/arch/evbmips/conf/ZYXELKX
--- a/sys/arch/evbmips/conf/ZYXELKX     Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/evbmips/conf/ZYXELKX     Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: ZYXELKX,v 1.19 2021/01/21 06:51:54 nia Exp $
+#      $NetBSD: ZYXELKX,v 1.20 2021/12/26 16:08:20 andvar Exp $
 
 include        "arch/evbmips/conf/std.rasoc"
 
@@ -85,7 +85,7 @@
 # File system options
 #options       QUOTA           # UFS quotas
 #options       DISKLABEL_EI    # disklabel Endian Independent support
-#options       FFS_EI          # FFS Endian Independant support
+#options       FFS_EI          # FFS Endian Independent support
 #options       NFSSERVER       # Network File System server
 options        FFS_NO_SNAPSHOT # No FF snapshot support
 #options       EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and immutable) behave as system flags.
diff -r 836399e19072 -r 958872744286 sys/arch/ews4800mips/conf/GENERIC
--- a/sys/arch/ews4800mips/conf/GENERIC Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/ews4800mips/conf/GENERIC Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.63 2021/01/21 06:51:54 nia Exp $
+# $NetBSD: GENERIC,v 1.64 2021/12/26 16:08:20 andvar Exp $
 #
 # GENERIC machine description file
 # This machine description file is used to generate the default NetBSD
@@ -25,7 +25,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident         "GENERIC-$Revision: 1.63 $"
+#ident         "GENERIC-$Revision: 1.64 $"
 
 maxusers       16
 
@@ -100,7 +100,7 @@
 # File system options
 options        QUOTA           # legacy UFS quotas
 options        QUOTA2          # new, in-filesystem UFS quotas
-#options       FFS_EI          # FFS Endian Indpendent support
+#options       FFS_EI          # FFS Endian Independent support
 options        WAPBL           # File system journaling support
 #options       UFS_DIRHASH     # UFS Large Directory Hashing - Experimental
 options        NFSSERVER       # Network File System server
diff -r 836399e19072 -r 958872744286 sys/arch/hpcarm/conf/NETBOOKPRO
--- a/sys/arch/hpcarm/conf/NETBOOKPRO   Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/hpcarm/conf/NETBOOKPRO   Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: NETBOOKPRO,v 1.32 2020/04/18 11:00:41 skrll Exp $
+#      $NetBSD: NETBOOKPRO,v 1.33 2021/12/26 16:08:20 andvar Exp $
 #
 #      NETBOOKPRO -- Psion Teklogix NETBOOK PRO
 #
@@ -8,7 +8,7 @@
 
 #options       INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "GENERIC-$Revision: 1.32 $"
+#ident                 "GENERIC-$Revision: 1.33 $"
 
 # estimated number of users
 maxusers       32
@@ -58,7 +58,7 @@
 # File system options
 #options       QUOTA           # legacy UFS quotas
 #options       QUOTA2          # new, in-filesystem UFS quotas
-options        FFS_EI          # FFS Endian Independant support
+options        FFS_EI          # FFS Endian Independent support
 #options       WAPBL           # File system journaling support
 #options       FFS_NO_SNAPSHOT # No FFS snapshot support
 #options       NFSSERVER
diff -r 836399e19072 -r 958872744286 sys/arch/i386/include/frame.h
--- a/sys/arch/i386/include/frame.h     Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/i386/include/frame.h     Sun Dec 26 16:08:19 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: frame.h,v 1.40 2019/02/14 08:18:25 cherry Exp $        */
+/*     $NetBSD: frame.h,v 1.41 2021/12/26 16:08:20 andvar Exp $        */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -131,7 +131,7 @@
 
 #ifdef XEN
 /*
- * need arch independant way to access ip and cs from intrframe
+ * need arch independent way to access ip and cs from intrframe
  */
 #define        _INTRFRAME_CS   if_cs
 #define        _INTRFRAME_IP   if_eip
diff -r 836399e19072 -r 958872744286 sys/arch/luna68k/conf/files.luna68k
--- a/sys/arch/luna68k/conf/files.luna68k       Sun Dec 26 15:36:49 2021 +0000
+++ b/sys/arch/luna68k/conf/files.luna68k       Sun Dec 26 16:08:19 2021 +0000



Home | Main Index | Thread Index | Old Index