Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci hz -> Hz



details:   https://anonhg.NetBSD.org/src/rev/1566ca6de2bb
branches:  trunk
changeset: 543298:1566ca6de2bb
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sat Feb 22 04:57:48 2003 +0000

description:
hz -> Hz

diffstat:

 sys/dev/pci/emuxki.c       |  6 +++---
 sys/dev/pci/if_bge.c       |  6 +++---
 sys/dev/pci/if_lmc_media.c |  8 ++++----
 sys/dev/pci/neo.c          |  6 +++---
 4 files changed, 13 insertions(+), 13 deletions(-)

diffs (112 lines):

diff -r 2067a170b567 -r 1566ca6de2bb sys/dev/pci/emuxki.c
--- a/sys/dev/pci/emuxki.c      Sat Feb 22 04:46:08 2003 +0000
+++ b/sys/dev/pci/emuxki.c      Sat Feb 22 04:57:48 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: emuxki.c,v 1.17 2003/02/18 18:47:06 wiz Exp $  */
+/*     $NetBSD: emuxki.c,v 1.18 2003/02/22 04:57:48 tsutsui Exp $      */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: emuxki.c,v 1.17 2003/02/18 18:47:06 wiz Exp $");
+__KERNEL_RCSID(0, "$NetBSD: emuxki.c,v 1.18 2003/02/22 04:57:48 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -1358,7 +1358,7 @@
                return (0);
 
 #ifdef EMUXKI_DEBUG
-       printf("Setting %s voice params : %s, %u bits, %u hz\n",
+       printf("Setting %s voice params : %s, %u bits, %u Hz\n",
               (voice->use & EMU_VOICE_USE_PLAY) ? "play" : "record",
               stereo ? "stereo" : "mono", (b16 + 1) * 8, srate);
 #endif
diff -r 2067a170b567 -r 1566ca6de2bb sys/dev/pci/if_bge.c
--- a/sys/dev/pci/if_bge.c      Sat Feb 22 04:46:08 2003 +0000
+++ b/sys/dev/pci/if_bge.c      Sat Feb 22 04:57:48 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_bge.c,v 1.32 2003/02/09 10:06:16 tron Exp $ */
+/*     $NetBSD: if_bge.c,v 1.33 2003/02/22 04:57:49 tsutsui Exp $      */
 
 /*
  * Copyright (c) 2001 Wind River Systems
@@ -62,7 +62,7 @@
  * into the driver.
  *
  * The BCM5700 supports the PCI v2.2 and PCI-X v1.0 standards, and will
- * function in a 32-bit/64-bit 33/66Mhz bus, or a 64-bit/133Mhz bus.
+ * function in a 32-bit/64-bit 33/66MHz bus, or a 64-bit/133MHz bus.
  *
  * The BCM5701 is a single-chip solution incorporating both the BCM5700
  * MAC and a BCM5401 10/100/1000 PHY. Unlike the BCM5700, the BCM5701
@@ -1247,7 +1247,7 @@
        PCI_SETBIT(sc, BGE_PCI_DMA_RW_CTL, BGE_PCI_READ_BNDRY_1024, 4);
 #endif
 
-       /* Set the timer prescaler (always 66Mhz) */
+       /* Set the timer prescaler (always 66MHz) */
        CSR_WRITE_4(sc, BGE_MISC_CFG, 65 << 1/*BGE_32BITTIME_66MHZ*/);
 
        return(0);
diff -r 2067a170b567 -r 1566ca6de2bb sys/dev/pci/if_lmc_media.c
--- a/sys/dev/pci/if_lmc_media.c        Sat Feb 22 04:46:08 2003 +0000
+++ b/sys/dev/pci/if_lmc_media.c        Sat Feb 22 04:57:48 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_lmc_media.c,v 1.14 2002/11/25 02:23:17 thorpej Exp $        */
+/*     $NetBSD: if_lmc_media.c,v 1.15 2003/02/22 04:57:49 tsutsui Exp $        */
 
 /*-
  * Copyright (c) 1997-1999 LAN Media Corporation (LMC)
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_lmc_media.c,v 1.14 2002/11/25 02:23:17 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_lmc_media.c,v 1.15 2003/02/22 04:57:49 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -661,10 +661,10 @@
 
        /*
         * original settings for clock rate of:
-        *  100 Khz (8,25,0,0,2) were incorrect
+        *  100 KHz (8,25,0,0,2) were incorrect
         *  they should have been 80,125,1,3,3
         *  There are 17 param combinations to produce this freq.
-        *  For 1.5 Mhz use 120,100,1,1,2 (226 param. combinations)
+        *  For 1.5 MHz use 120,100,1,1,2 (226 param. combinations)
         */
        if (ctl == NULL) {
                av = &ictl->cardspec.ssi;
diff -r 2067a170b567 -r 1566ca6de2bb sys/dev/pci/neo.c
--- a/sys/dev/pci/neo.c Sat Feb 22 04:46:08 2003 +0000
+++ b/sys/dev/pci/neo.c Sat Feb 22 04:57:48 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: neo.c,v 1.17 2003/02/01 06:23:39 thorpej Exp $ */
+/*     $NetBSD: neo.c,v 1.18 2003/02/22 04:57:49 tsutsui Exp $ */
 
 /*
  * Copyright (c) 1999 Cameron Grant <gandalf%vilnya.demon.co.uk@localhost>
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: neo.c,v 1.17 2003/02/01 06:23:39 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: neo.c,v 1.18 2003/02/22 04:57:49 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -102,7 +102,7 @@
  * passes that location while playing, it signals an interrupt.
  * 
  * The ring buffer size is currently 16k. That is about 100ms of audio
- * at 44.1khz/stero/16 bit. However, to keep the buffer full, interrupts
+ * at 44.1kHz/stero/16 bit. However, to keep the buffer full, interrupts
  * are generated more often than that, so 20-40 interrupts per second
  * should not be unexpected. Increasing BUFFSIZE should help minimize
  * of glitches due to drivers that spend to much time looping at high



Home | Main Index | Thread Index | Old Index