Deleted Added
full compact
if_fpa.c (33676) if_fpa.c (41771)
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_fpa.c,v 1.6 1998/02/09 06:10:49 eivind Exp $
24 * $Id: if_fpa.c,v 1.7 1998/02/20 13:11:53 bde Exp $
25 *
26 */
27
28/*
29 * DEC PDQ FDDI Controller; code for BSD derived operating systems
30 *
31 * This module supports the DEC DEFPA PCI FDDI Controller
32 */

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

130#if defined(__FreeBSD__)
131static void pdq_pci_shutdown(int, void *);
132
133/*
134 * This is the PCI configuration support. Since the PDQ is available
135 * on both EISA and PCI boards, one must be careful in how defines the
136 * PDQ in the config file.
137 */
25 *
26 */
27
28/*
29 * DEC PDQ FDDI Controller; code for BSD derived operating systems
30 *
31 * This module supports the DEC DEFPA PCI FDDI Controller
32 */

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

130#if defined(__FreeBSD__)
131static void pdq_pci_shutdown(int, void *);
132
133/*
134 * This is the PCI configuration support. Since the PDQ is available
135 * on both EISA and PCI boards, one must be careful in how defines the
136 * PDQ in the config file.
137 */
138static char *
138static const char *
139pdq_pci_probe(
140 pcici_t config_id,
141 pcidi_t device_id)
142{
143 if (PCI_VENDORID(device_id) == DEC_VENDORID &&
144 PCI_CHIPID(device_id) == DEFPA_CHIPID)
145 return "Digital DEFPA PCI FDDI Controller";
146 return NULL;

--- 294 unchanged lines hidden ---
139pdq_pci_probe(
140 pcici_t config_id,
141 pcidi_t device_id)
142{
143 if (PCI_VENDORID(device_id) == DEC_VENDORID &&
144 PCI_CHIPID(device_id) == DEFPA_CHIPID)
145 return "Digital DEFPA PCI FDDI Controller";
146 return NULL;

--- 294 unchanged lines hidden ---