Deleted Added
full compact
if_fea.c (50477) if_fea.c (55953)
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 * $FreeBSD: head/sys/dev/pdq/if_fea.c 50477 1999-08-28 01:08:13Z peter $
24 * $FreeBSD: head/sys/dev/pdq/if_fea.c 55953 2000-01-14 07:14:17Z peter $
25 */
26
27/*
28 * DEC PDQ FDDI Controller
29 *
30 * This module support the DEFEA EISA FDDI Controller.
31 */
32

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

38#include <net/if.h>
39#include <net/if_arp.h>
40
41#include <sys/module.h>
42#include <sys/bus.h>
43#include <machine/bus.h>
44#include <machine/resource.h>
45#include <sys/rman.h>
25 */
26
27/*
28 * DEC PDQ FDDI Controller
29 *
30 * This module support the DEFEA EISA FDDI Controller.
31 */
32

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

38#include <net/if.h>
39#include <net/if_arp.h>
40
41#include <sys/module.h>
42#include <sys/bus.h>
43#include <machine/bus.h>
44#include <machine/resource.h>
45#include <sys/rman.h>
46#include <i386/eisa/eisaconf.h>
46#include <dev/eisa/eisaconf.h>
47#include <dev/pdq/pdqvar.h>
48#include <dev/pdq/pdqreg.h>
49
50static void pdq_eisa_subprobe __P((pdq_bus_t, u_int32_t, u_int32_t *, u_int32_t *, u_int32_t *));
51static void pdq_eisa_devinit __P((pdq_softc_t *));
52static const char * pdq_eisa_match __P((eisa_id_t));
53static int pdq_eisa_probe __P((device_t));
54static int pdq_eisa_attach __P((device_t));

--- 216 unchanged lines hidden ---
47#include <dev/pdq/pdqvar.h>
48#include <dev/pdq/pdqreg.h>
49
50static void pdq_eisa_subprobe __P((pdq_bus_t, u_int32_t, u_int32_t *, u_int32_t *, u_int32_t *));
51static void pdq_eisa_devinit __P((pdq_softc_t *));
52static const char * pdq_eisa_match __P((eisa_id_t));
53static int pdq_eisa_probe __P((device_t));
54static int pdq_eisa_attach __P((device_t));

--- 216 unchanged lines hidden ---