Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/dev/audio fix few typos in comments.



details:   https://anonhg.NetBSD.org/src/rev/fcdef05d79cf
branches:  trunk
changeset: 366174:fcdef05d79cf
user:      andvar <andvar%NetBSD.org@localhost>
date:      Tue May 17 05:05:20 2022 +0000

description:
fix few typos in comments.

diffstat:

 sys/arch/powerpc/pci/pcib.c |  6 +++---
 sys/dev/spi/spi.c           |  6 +++---
 sys/dev/usb/udl.c           |  6 +++---
 tests/dev/audio/audiotest.c |  6 +++---
 4 files changed, 12 insertions(+), 12 deletions(-)

diffs (108 lines):

diff -r cdfb72b88a14 -r fcdef05d79cf sys/arch/powerpc/pci/pcib.c
--- a/sys/arch/powerpc/pci/pcib.c       Tue May 17 01:39:57 2022 +0000
+++ b/sys/arch/powerpc/pci/pcib.c       Tue May 17 05:05:20 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pcib.c,v 1.10 2021/08/07 16:19:03 thorpej Exp $        */
+/*     $NetBSD: pcib.c,v 1.11 2022/05/17 05:05:20 andvar Exp $ */
 
 /*-
  * Copyright (c) 1996, 1998 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.10 2021/08/07 16:19:03 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.11 2022/05/17 05:05:20 andvar Exp $");
 
 #include "isa.h"
 #include "isadma.h"
@@ -151,7 +151,7 @@
         * us that the interrupt is MPIC 0, which is the bridge intr for
         * the 8259.
         * Additionally, sometimes the PCI Interrupt Routing Control Register
-        * is improperly initialized, causing all sorts of wierd interrupt
+        * is improperly initialized, causing all sorts of weird interrupt
         * issues on the machine.  The manual says it should default to
         * 0000h (index 45-44h) however it would appear that PPCBUG is
         * setting it up differently.  Reset it to 0000h.
diff -r cdfb72b88a14 -r fcdef05d79cf sys/dev/spi/spi.c
--- a/sys/dev/spi/spi.c Tue May 17 01:39:57 2022 +0000
+++ b/sys/dev/spi/spi.c Tue May 17 05:05:20 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: spi.c,v 1.25 2022/05/08 06:38:58 skrll Exp $ */
+/* $NetBSD: spi.c,v 1.26 2022/05/17 05:05:20 andvar Exp $ */
 
 /*-
  * Copyright (c) 2006 Urbana-Champaign Independent Media Center.
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: spi.c,v 1.25 2022/05/08 06:38:58 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: spi.c,v 1.26 2022/05/17 05:05:20 andvar Exp $");
 
 #include "locators.h"
 
@@ -615,7 +615,7 @@
  *
  * spi_send_recv - sends data to the bus, and then receives.  Note that this is
  * done synchronously, i.e. send a command and get the response.  This is
- * not full duplex.  If you wnat full duplex, you can't use these convenience
+ * not full duplex.  If you want full duplex, you can't use these convenience
  * wrappers.
  */
 int
diff -r cdfb72b88a14 -r fcdef05d79cf sys/dev/usb/udl.c
--- a/sys/dev/usb/udl.c Tue May 17 01:39:57 2022 +0000
+++ b/sys/dev/usb/udl.c Tue May 17 05:05:20 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: udl.c,v 1.27 2021/08/07 16:19:17 thorpej Exp $ */
+/*     $NetBSD: udl.c,v 1.28 2022/05/17 05:05:20 andvar Exp $  */
 
 /*-
  * Copyright (c) 2009 FUKAUMI Naoki.
@@ -53,7 +53,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: udl.c,v 1.27 2021/08/07 16:19:17 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udl.c,v 1.28 2022/05/17 05:05:20 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -1020,7 +1020,7 @@
 
        if (uc == ' ') {
                /*
-                * Writting a block for the space character instead rendering
+                * Writing a block for the space character instead rendering
                 * it from font bits is more slim.
                 */
                udl_fill_rect(sc, rgb16[0], x, y, width, height);
diff -r cdfb72b88a14 -r fcdef05d79cf tests/dev/audio/audiotest.c
--- a/tests/dev/audio/audiotest.c       Tue May 17 01:39:57 2022 +0000
+++ b/tests/dev/audio/audiotest.c       Tue May 17 05:05:20 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: audiotest.c,v 1.19 2022/04/23 07:47:42 isaki Exp $     */
+/*     $NetBSD: audiotest.c,v 1.20 2022/05/17 05:05:20 andvar Exp $    */
 
 /*
  * Copyright (C) 2019 Tetsuya Isaki. All rights reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: audiotest.c,v 1.19 2022/04/23 07:47:42 isaki Exp $");
+__RCSID("$NetBSD: audiotest.c,v 1.20 2022/05/17 05:05:20 andvar Exp $");
 
 #include <errno.h>
 #include <fcntl.h>
@@ -3121,7 +3121,7 @@
 
 /*
  * Unpause from buffer full, POLLOUT should raise.
- * XXX poll(2) on NetBSD7 is really incomplete and wierd.  I don't test it.
+ * XXX poll(2) on NetBSD7 is really incomplete and weird.  I don't test it.
  */
 DEF(poll_out_unpause)
 {



Home | Main Index | Thread Index | Old Index