Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/scsipi Don't capitalize the word sync or async. It'...



details:   https://anonhg.NetBSD.org/src/rev/625f126b9562
branches:  trunk
changeset: 510078:625f126b9562
user:      enami <enami%NetBSD.org@localhost>
date:      Fri May 18 16:25:07 2001 +0000

description:
Don't capitalize the word sync or async.  It's inconsistient with other
messages.

diffstat:

 sys/dev/scsipi/scsipi_base.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r f51dd0818187 -r 625f126b9562 sys/dev/scsipi/scsipi_base.c
--- a/sys/dev/scsipi/scsipi_base.c      Fri May 18 15:35:49 2001 +0000
+++ b/sys/dev/scsipi/scsipi_base.c      Fri May 18 16:25:07 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: scsipi_base.c,v 1.42 2001/05/18 12:56:28 bouyer Exp $  */
+/*     $NetBSD: scsipi_base.c,v 1.43 2001/05/18 16:25:07 enami Exp $   */
 
 /*-
  * Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
@@ -2035,10 +2035,10 @@
        printf("%s: ", periph->periph_dev->dv_xname);
        if (periph->periph_mode & PERIPH_CAP_SYNC) {
                period = scsipi_sync_factor_to_period(periph->periph_period);
-               printf("Sync (%d.%dns offset %d)",
+               printf("sync (%d.%dns offset %d)",
                    period / 10, period % 10, periph->periph_offset);
        } else
-               printf("Async");
+               printf("async");
 
        if (periph->periph_mode & PERIPH_CAP_WIDE32)
                printf(", 32-bit");



Home | Main Index | Thread Index | Old Index