Deleted Added
full compact
if_rl.c (118977) if_rl.c (118978)
1/*
2 * Copyright (c) 1997, 1998-2003
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

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

129 * PCI ID. Two new NIC type codes, RL_8139CPLUS and RL_8169 have
130 * been added to distinguish the chips at runtime. Separate RX and
131 * TX handling routines have been added to handle C+ mode, which
132 * are selected via function pointers that are initialized during
133 * the driver attach phase.
134 */
135
136#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1997, 1998-2003
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

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

129 * PCI ID. Two new NIC type codes, RL_8139CPLUS and RL_8169 have
130 * been added to distinguish the chips at runtime. Separate RX and
131 * TX handling routines have been added to handle C+ mode, which
132 * are selected via function pointers that are initialized during
133 * the driver attach phase.
134 */
135
136#include <sys/cdefs.h>
137__FBSDID("$FreeBSD: head/sys/pci/if_rl.c 118977 2003-08-15 22:46:47Z wpaul $");
137__FBSDID("$FreeBSD: head/sys/pci/if_rl.c 118978 2003-08-15 22:47:55Z wpaul $");
138
139#include <sys/param.h>
140#include <sys/endian.h>
141#include <sys/systm.h>
142#include <sys/sockio.h>
143#include <sys/mbuf.h>
144#include <sys/malloc.h>
145#include <sys/kernel.h>

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

195 { RT_VENDORID, RT_DEVICEID_8129, RL_8129,
196 "RealTek 8129 10/100BaseTX" },
197 { RT_VENDORID, RT_DEVICEID_8139, RL_8139,
198 "RealTek 8139 10/100BaseTX" },
199 { RT_VENDORID, RT_DEVICEID_8169, RL_8169,
200 "RealTek 8169 10/100/1000BaseTX" },
201 { RT_VENDORID, RT_DEVICEID_8138, RL_8139,
202 "RealTek 8139 10/100BaseTX CardBus" },
138
139#include <sys/param.h>
140#include <sys/endian.h>
141#include <sys/systm.h>
142#include <sys/sockio.h>
143#include <sys/mbuf.h>
144#include <sys/malloc.h>
145#include <sys/kernel.h>

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

195 { RT_VENDORID, RT_DEVICEID_8129, RL_8129,
196 "RealTek 8129 10/100BaseTX" },
197 { RT_VENDORID, RT_DEVICEID_8139, RL_8139,
198 "RealTek 8139 10/100BaseTX" },
199 { RT_VENDORID, RT_DEVICEID_8169, RL_8169,
200 "RealTek 8169 10/100/1000BaseTX" },
201 { RT_VENDORID, RT_DEVICEID_8138, RL_8139,
202 "RealTek 8139 10/100BaseTX CardBus" },
203 { RT_VENDORID, RT_DEVICEID_8100, RL_8139,
204 "RealTek 8100 10/100BaseTX" },
203 { ACCTON_VENDORID, ACCTON_DEVICEID_5030, RL_8139,
204 "Accton MPX 5030/5038 10/100BaseTX" },
205 { DELTA_VENDORID, DELTA_DEVICEID_8139, RL_8139,
206 "Delta Electronics 8139 10/100BaseTX" },
207 { ADDTRON_VENDORID, ADDTRON_DEVICEID_8139, RL_8139,
208 "Addtron Technolgy 8139 10/100BaseTX" },
209 { DLINK_VENDORID, DLINK_DEVICEID_530TXPLUS, RL_8139,
210 "D-Link DFE-530TX+ 10/100BaseTX" },

--- 2878 unchanged lines hidden ---
205 { ACCTON_VENDORID, ACCTON_DEVICEID_5030, RL_8139,
206 "Accton MPX 5030/5038 10/100BaseTX" },
207 { DELTA_VENDORID, DELTA_DEVICEID_8139, RL_8139,
208 "Delta Electronics 8139 10/100BaseTX" },
209 { ADDTRON_VENDORID, ADDTRON_DEVICEID_8139, RL_8139,
210 "Addtron Technolgy 8139 10/100BaseTX" },
211 { DLINK_VENDORID, DLINK_DEVICEID_530TXPLUS, RL_8139,
212 "D-Link DFE-530TX+ 10/100BaseTX" },

--- 2878 unchanged lines hidden ---