Deleted Added
full compact
if_fpa.c (127135) if_fpa.c (143158)
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

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

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 *
25 */
26
27#include <sys/cdefs.h>
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

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

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 *
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/dev/pdq/if_fpa.c 127135 2004-03-17 17:50:55Z njl $");
28__FBSDID("$FreeBSD: head/sys/dev/pdq/if_fpa.c 143158 2005-03-05 18:10:49Z imp $");
29
30/*
31 * DEC PDQ FDDI Controller; code for BSD derived operating systems
32 *
33 * This module supports the DEC DEFPA PCI FDDI Controller
34 */
35
36#include <sys/param.h>

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

93 * This is the PCI configuration support.
94 */
95static int
96pdq_pci_probe(device_t dev)
97{
98 if (pci_get_vendor(dev) == DEC_VENDORID &&
99 pci_get_device(dev) == DEFPA_CHIPID) {
100 device_set_desc(dev, "Digital DEFPA PCI FDDI Controller");
29
30/*
31 * DEC PDQ FDDI Controller; code for BSD derived operating systems
32 *
33 * This module supports the DEC DEFPA PCI FDDI Controller
34 */
35
36#include <sys/param.h>

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

93 * This is the PCI configuration support.
94 */
95static int
96pdq_pci_probe(device_t dev)
97{
98 if (pci_get_vendor(dev) == DEC_VENDORID &&
99 pci_get_device(dev) == DEFPA_CHIPID) {
100 device_set_desc(dev, "Digital DEFPA PCI FDDI Controller");
101 return (0);
101 return (BUS_PROBE_DEFAULT);
102 }
103
104 return (ENXIO);
105}
106
107static int
108pdq_pci_attach(device_t dev)
109{

--- 113 unchanged lines hidden ---
102 }
103
104 return (ENXIO);
105}
106
107static int
108pdq_pci_attach(device_t dev)
109{

--- 113 unchanged lines hidden ---