Deleted Added
full compact
if_tlreg.h (199560) if_tlreg.h (214264)
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/dev/tl/if_tlreg.h 199560 2009-11-19 22:14:23Z jhb $
32 * $FreeBSD: head/sys/dev/tl/if_tlreg.h 214264 2010-10-24 12:51:02Z marius $
33 */
34
35
36struct tl_type {
37 u_int16_t tl_vid;
38 u_int16_t tl_did;
39 char *tl_name;
40};

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

111struct tl_softc {
112 struct ifnet *tl_ifp;
113 device_t tl_dev;
114 struct ifmedia ifmedia; /* media info */
115 void *tl_intrhand;
116 struct resource *tl_irq;
117 struct resource *tl_res;
118 device_t tl_miibus;
33 */
34
35
36struct tl_type {
37 u_int16_t tl_vid;
38 u_int16_t tl_did;
39 char *tl_name;
40};

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

111struct tl_softc {
112 struct ifnet *tl_ifp;
113 device_t tl_dev;
114 struct ifmedia ifmedia; /* media info */
115 void *tl_intrhand;
116 struct resource *tl_irq;
117 struct resource *tl_res;
118 device_t tl_miibus;
119 struct tl_type *tl_dinfo; /* ThunderLAN adapter info */
120 u_int8_t tl_eeaddr;
121 struct tl_list_data *tl_ldata; /* TX/RX lists and mbufs */
122 struct tl_chain_data tl_cdata;
123 u_int8_t tl_txeoc;
124 u_int8_t tl_bitrate;
125 int tl_if_flags;
126 struct callout tl_stat_callout;
127 struct mtx tl_mtx;

--- 458 unchanged lines hidden ---
119 u_int8_t tl_eeaddr;
120 struct tl_list_data *tl_ldata; /* TX/RX lists and mbufs */
121 struct tl_chain_data tl_cdata;
122 u_int8_t tl_txeoc;
123 u_int8_t tl_bitrate;
124 int tl_if_flags;
125 struct callout tl_stat_callout;
126 struct mtx tl_mtx;

--- 458 unchanged lines hidden ---