Deleted Added
full compact
if_dc.c (57901) if_dc.c (59758)
1/*
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ee.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, 1999
3 * Bill Paul <wpaul@ee.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/dc/if_dc.c 57901 2000-03-11 05:20:56Z msmith $
32 * $FreeBSD: head/sys/dev/dc/if_dc.c 59758 2000-04-29 13:41:57Z peter $
33 */
34
35/*
36 * DEC "tulip" clone ethernet driver. Supports the DEC/Intel 21143
37 * series chips and several workalikes including the following:
38 *
39 * Macronix 98713/98715/98725 PMAC (www.macronix.com)
40 * Macronix/Lite-On 82c115 PNIC II (www.macronix.com)

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

142
143#include <pci/pcireg.h>
144#include <pci/pcivar.h>
145
146#define DC_USEIOSPACE
147
148#include <pci/if_dcreg.h>
149
33 */
34
35/*
36 * DEC "tulip" clone ethernet driver. Supports the DEC/Intel 21143
37 * series chips and several workalikes including the following:
38 *
39 * Macronix 98713/98715/98725 PMAC (www.macronix.com)
40 * Macronix/Lite-On 82c115 PNIC II (www.macronix.com)

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

142
143#include <pci/pcireg.h>
144#include <pci/pcivar.h>
145
146#define DC_USEIOSPACE
147
148#include <pci/if_dcreg.h>
149
150MODULE_DEPEND(dc, miibus, 1, 1, 1);
151
150/* "controller miibus0" required. See GENERIC if you get errors here. */
151#include "miibus_if.h"
152
153#ifndef lint
154static const char rcsid[] =
152/* "controller miibus0" required. See GENERIC if you get errors here. */
153#include "miibus_if.h"
154
155#ifndef lint
156static const char rcsid[] =
155 "$FreeBSD: head/sys/dev/dc/if_dc.c 57901 2000-03-11 05:20:56Z msmith $";
157 "$FreeBSD: head/sys/dev/dc/if_dc.c 59758 2000-04-29 13:41:57Z peter $";
156#endif
157
158/*
159 * Various supported device vendors/types and their names.
160 */
161static struct dc_type dc_devs[] = {
162 { DC_VENDORID_DEC, DC_DEVICEID_21143,
163 "Intel 21143 10/100BaseTX" },

--- 2774 unchanged lines hidden ---
158#endif
159
160/*
161 * Various supported device vendors/types and their names.
162 */
163static struct dc_type dc_devs[] = {
164 { DC_VENDORID_DEC, DC_DEVICEID_21143,
165 "Intel 21143 10/100BaseTX" },

--- 2774 unchanged lines hidden ---