From 2f8150954f5d6e8e6db10e1139b930d8570d1584 Mon Sep 17 00:00:00 2001 From: thorpej Date: Sun, 8 Jun 1997 18:49:43 +0000 Subject: [PATCH] Correct a couple of typos so that this compiles with TULIP_DEBUG, per PR 3723, submitted by enami tsugutomo . --- sys/dev/pci/if_de.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/pci/if_de.c b/sys/dev/pci/if_de.c index a9c06378bddb..a47ade344cbf 100644 --- a/sys/dev/pci/if_de.c +++ b/sys/dev/pci/if_de.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_de.c,v 1.43 1997/06/08 18:46:34 thorpej Exp $ */ +/* $NetBSD: if_de.c,v 1.44 1997/06/08 18:49:43 thorpej Exp $ */ /*- * Copyright (c) 1994-1997 Matt Thomas (matt@3am-software.com) @@ -4231,15 +4231,15 @@ tulip_ifstart( if (sc->tulip_flags & TULIP_TXINTPENDING) { eop->d_flag |= TULIP_DFLAG_TxLASTSEG; #if defined(TULIP_DEBUG) - sc->tulip_txpipe++; + sc->tulip_dbg.dbg_txpipe++; #endif } else { eop->d_flag |= TULIP_DFLAG_TxLASTSEG|TULIP_DFLAG_TxWANTINTR; if ((sc->tulip_flags & TULIP_TXPROBE_ACTIVE) == 0) { sc->tulip_flags |= TULIP_TXINTPENDING; #if defined(TULIP_DEBUG) - sc->tulip_txpipestats[sc->tulip_txpipe]++; - sc->tulip_txpipe = 0; + sc->tulip_dbg.dbg_txpipestats[sc->tulip_dbg.dbg_txpipe]++; + sc->tulip_dbg.dbg_txpipe = 0; #endif } }