Deleted Added
full compact
midwayvar.h (118548) midwayvar.h (118607)
1/* $NetBSD: midwayvar.h,v 1.10 1997/03/20 21:34:46 chuck Exp $ */
2
3/*
4 *
5 * Copyright (c) 1996 Charles D. Cranor and Washington University.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 17 unchanged lines hidden (view full) ---

26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
1/* $NetBSD: midwayvar.h,v 1.10 1997/03/20 21:34:46 chuck Exp $ */
2
3/*
4 *
5 * Copyright (c) 1996 Charles D. Cranor and Washington University.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 17 unchanged lines hidden (view full) ---

26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 * $FreeBSD: head/sys/dev/en/midwayvar.h 118548 2003-08-06 14:53:27Z harti $
34 * $FreeBSD: head/sys/dev/en/midwayvar.h 118607 2003-08-07 15:04:27Z jhb $
35 */
36
37/*
38 * m i d w a y v a r . h
39 *
40 * we define the en_softc here so that bus specific modules can allocate
41 * it as the first item in their softc.
42 *

--- 88 unchanged lines hidden (view full) ---

131 struct en_vcc *vcc; /* backpointer to VCI */
132 struct ifqueue q; /* mbufs waiting for dma now */
133 struct ifqueue indma; /* mbufs being dma'd now */
134};
135
136struct en_vcc {
137 struct atmio_vcc vcc; /* required by common code */
138 void *rxhand;
35 */
36
37/*
38 * m i d w a y v a r . h
39 *
40 * we define the en_softc here so that bus specific modules can allocate
41 * it as the first item in their softc.
42 *

--- 88 unchanged lines hidden (view full) ---

131 struct en_vcc *vcc; /* backpointer to VCI */
132 struct ifqueue q; /* mbufs waiting for dma now */
133 struct ifqueue indma; /* mbufs being dma'd now */
134};
135
136struct en_vcc {
137 struct atmio_vcc vcc; /* required by common code */
138 void *rxhand;
139 uint vflags;
139 u_int vflags;
140 uint32_t ipackets;
141 uint32_t opackets;
142 uint32_t ibytes;
143 uint32_t obytes;
144
145 uint8_t txspeed;
146 struct en_txslot *txslot; /* transmit slot */
147 struct en_rxslot *rxslot; /* receive slot */

--- 95 unchanged lines hidden ---
140 uint32_t ipackets;
141 uint32_t opackets;
142 uint32_t ibytes;
143 uint32_t obytes;
144
145 uint8_t txspeed;
146 struct en_txslot *txslot; /* transmit slot */
147 struct en_rxslot *rxslot; /* receive slot */

--- 95 unchanged lines hidden ---