Deleted Added
full compact
if_fea.c (29674) if_fea.c (32350)
1/*-
2 * Copyright (c) 1995, 1996 Matt Thomas <matt@3am-software.com>
3 * 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

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

16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 *
1/*-
2 * Copyright (c) 1995, 1996 Matt Thomas <matt@3am-software.com>
3 * 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

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

16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 *
24 * $Id: if_fea.c,v 1.6 1997/09/14 11:28:30 peter Exp $
24 * $Id: if_fea.c,v 1.7 1997/09/21 21:35:24 gibbs Exp $
25 */
26
27/*
28 * DEC PDQ FDDI Controller
29 *
30 * This module support the DEFEA EISA FDDI Controller.
31 */
32
25 */
26
27/*
28 * DEC PDQ FDDI Controller
29 *
30 * This module support the DEFEA EISA FDDI Controller.
31 */
32
33#include "opt_inet.h"
33
34#include <sys/param.h>
35#include <sys/kernel.h>
36#include <sys/socket.h>
37#if defined(__bsdi__) || defined(__NetBSD__)
38#include <sys/device.h>
39#endif
40
34
35#include <sys/param.h>
36#include <sys/kernel.h>
37#include <sys/socket.h>
38#if defined(__bsdi__) || defined(__NetBSD__)
39#include <sys/device.h>
40#endif
41
42#include <net/ethernet.h>
41#include <net/if.h>
43#include <net/if.h>
44#include <net/if_arp.h>
42
43#ifdef INET
44#include <netinet/in.h>
45
46#ifdef INET
47#include <netinet/in.h>
45#include <netinet/if_ether.h>
46#endif
47
48#if defined(__FreeBSD__)
49#include <i386/eisa/eisaconf.h>
50#include <dev/pdq/pdqvar.h>
51#include <dev/pdq/pdqreg.h>
52#elif defined(__bsdi__)
53#include <i386/isa/isa.h>

--- 446 unchanged lines hidden ---
48#endif
49
50#if defined(__FreeBSD__)
51#include <i386/eisa/eisaconf.h>
52#include <dev/pdq/pdqvar.h>
53#include <dev/pdq/pdqreg.h>
54#elif defined(__bsdi__)
55#include <i386/isa/isa.h>

--- 446 unchanged lines hidden ---