Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/ic Fix a couple of typos in debugging messages. Fro...
details: https://anonhg.NetBSD.org/src/rev/a2cca30c0923
branches: trunk
changeset: 486555:a2cca30c0923
user: thorpej <thorpej%NetBSD.org@localhost>
date: Thu May 25 16:37:33 2000 +0000
description:
Fix a couple of typos in debugging messages. From IWAMOTO Toshihiro,
kern/10194.
diffstat:
sys/dev/ic/tulip.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r af5ef2a083a5 -r a2cca30c0923 sys/dev/ic/tulip.c
--- a/sys/dev/ic/tulip.c Thu May 25 16:36:03 2000 +0000
+++ b/sys/dev/ic/tulip.c Thu May 25 16:37:33 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tulip.c,v 1.65 2000/05/25 16:36:03 thorpej Exp $ */
+/* $NetBSD: tulip.c,v 1.66 2000/05/25 16:37:33 thorpej Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
@@ -777,7 +777,7 @@
#ifdef TLP_DEBUG
if (ifp->if_flags & IFF_DEBUG) {
- printf(" txsoft %p trainsmit chain:\n", txs);
+ printf(" txsoft %p transmit chain:\n", txs);
for (seg = sc->sc_txnext;; seg = TULIP_NEXTTX(seg)) {
printf(" descriptor %d:\n", seg);
printf(" td_status: 0x%08x\n",
@@ -1397,7 +1397,7 @@
#ifdef TLP_DEBUG
if (ifp->if_flags & IFF_DEBUG) {
int i;
- printf(" txsoft %p trainsmit chain:\n", txs);
+ printf(" txsoft %p transmit chain:\n", txs);
for (i = txs->txs_firstdesc;; i = TULIP_NEXTTX(i)) {
printf(" descriptor %d:\n", i);
printf(" td_status: 0x%08x\n",
Home |
Main Index |
Thread Index |
Old Index