Deleted Added
full compact
if_tlreg.h (158471) if_tlreg.h (162315)
1/*-
2 * Copyright (c) 1997, 1998
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
1/*-
2 * Copyright (c) 1997, 1998
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/pci/if_tlreg.h 158471 2006-05-12 05:04:46Z jhb $
32 * $FreeBSD: head/sys/pci/if_tlreg.h 162315 2006-09-15 10:40:54Z glebius $
33 */
34
35
36struct tl_type {
37 u_int16_t tl_vid;
38 u_int16_t tl_did;
39 char *tl_name;
40};

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

105
106 struct tl_chain *tl_tx_head;
107 struct tl_chain *tl_tx_tail;
108 struct tl_chain *tl_tx_free;
109};
110
111struct tl_softc {
112 struct ifnet *tl_ifp;
33 */
34
35
36struct tl_type {
37 u_int16_t tl_vid;
38 u_int16_t tl_did;
39 char *tl_name;
40};

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

105
106 struct tl_chain *tl_tx_head;
107 struct tl_chain *tl_tx_tail;
108 struct tl_chain *tl_tx_free;
109};
110
111struct tl_softc {
112 struct ifnet *tl_ifp;
113 device_t tl_dev;
113 struct ifmedia ifmedia; /* media info */
114 bus_space_handle_t tl_bhandle;
115 bus_space_tag_t tl_btag;
116 void *tl_intrhand;
117 struct resource *tl_irq;
118 struct resource *tl_res;
119 device_t tl_miibus;
120 struct tl_type *tl_dinfo; /* ThunderLAN adapter info */

--- 471 unchanged lines hidden ---
114 struct ifmedia ifmedia; /* media info */
115 bus_space_handle_t tl_bhandle;
116 bus_space_tag_t tl_btag;
117 void *tl_intrhand;
118 struct resource *tl_irq;
119 struct resource *tl_res;
120 device_t tl_miibus;
121 struct tl_type *tl_dinfo; /* ThunderLAN adapter info */

--- 471 unchanged lines hidden ---