[BACK]Return to if_bge.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / dev / pci

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/dev/pci/if_bge.c between version 1.41 and 1.42

version 1.41, 2003/06/15 23:09:08 version 1.42, 2003/06/30 13:20:21
Line 2090  bge_attach(parent, self, aux)
Line 2090  bge_attach(parent, self, aux)
         ifp->if_start = bge_start;          ifp->if_start = bge_start;
         ifp->if_init = bge_init;          ifp->if_init = bge_init;
         ifp->if_watchdog = bge_watchdog;          ifp->if_watchdog = bge_watchdog;
         IFQ_SET_MAXLEN(&ifp->if_snd, BGE_TX_RING_CNT - 1);          IFQ_SET_MAXLEN(&ifp->if_snd, max(BGE_TX_RING_CNT - 1, IFQ_MAXLEN));
         IFQ_SET_READY(&ifp->if_snd);          IFQ_SET_READY(&ifp->if_snd);
         DPRINTFN(5, ("bcopy\n"));          DPRINTFN(5, ("bcopy\n"));
         strcpy(ifp->if_xname, sc->bge_dev.dv_xname);          strcpy(ifp->if_xname, sc->bge_dev.dv_xname);

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42

CVSweb <webmaster@jp.NetBSD.org>