Deleted Added
full compact
if_re.c (148654) if_re.c (148722)
1/*-
2 * Copyright (c) 1997, 1998-2003
3 * Bill Paul <wpaul@windriver.com>. 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

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

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
33#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997, 1998-2003
3 * Bill Paul <wpaul@windriver.com>. 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

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

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
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/dev/re/if_re.c 148654 2005-08-03 00:18:35Z rwatson $");
34__FBSDID("$FreeBSD: head/sys/dev/re/if_re.c 148722 2005-08-05 08:19:12Z tobez $");
35
36/*
37 * RealTek 8139C+/8169/8169S/8110S PCI NIC driver
38 *
39 * Written by Bill Paul <wpaul@windriver.com>
40 * Senior Networking Software Engineer
41 * Wind River Systems
42 */

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

154#include <pci/if_rlreg.h>
155
156#define RE_CSUM_FEATURES (CSUM_IP | CSUM_TCP | CSUM_UDP)
157
158/*
159 * Various supported device vendors/types and their names.
160 */
161static struct rl_type re_devs[] = {
35
36/*
37 * RealTek 8139C+/8169/8169S/8110S PCI NIC driver
38 *
39 * Written by Bill Paul <wpaul@windriver.com>
40 * Senior Networking Software Engineer
41 * Wind River Systems
42 */

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

154#include <pci/if_rlreg.h>
155
156#define RE_CSUM_FEATURES (CSUM_IP | CSUM_TCP | CSUM_UDP)
157
158/*
159 * Various supported device vendors/types and their names.
160 */
161static struct rl_type re_devs[] = {
162 { DLINK_VENDORID, DLINK_DEVICEID_528T, RL_HWREV_8169S,
163 "D-Link DGE-528(T) Gigabit Ethernet Adapter" },
162 { RT_VENDORID, RT_DEVICEID_8139, RL_HWREV_8139CPLUS,
163 "RealTek 8139C+ 10/100BaseTX" },
164 { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169,
165 "RealTek 8169 Gigabit Ethernet" },
166 { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169S,
167 "RealTek 8169S Single-chip Gigabit Ethernet" },
168 { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169SB,
169 "RealTek 8169SB Single-chip Gigabit Ethernet" },

--- 2323 unchanged lines hidden ---
164 { RT_VENDORID, RT_DEVICEID_8139, RL_HWREV_8139CPLUS,
165 "RealTek 8139C+ 10/100BaseTX" },
166 { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169,
167 "RealTek 8169 Gigabit Ethernet" },
168 { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169S,
169 "RealTek 8169S Single-chip Gigabit Ethernet" },
170 { RT_VENDORID, RT_DEVICEID_8169, RL_HWREV_8169SB,
171 "RealTek 8169SB Single-chip Gigabit Ethernet" },

--- 2323 unchanged lines hidden ---