Deleted Added
full compact
if_xl.c (139825) if_xl.c (142398)
1/*-
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.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

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

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
33#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997, 1998, 1999
3 * Bill Paul <wpaul@ctr.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

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

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
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/pci/if_xl.c 139825 2005-01-07 02:29:27Z imp $");
34__FBSDID("$FreeBSD: head/sys/pci/if_xl.c 142398 2005-02-24 21:32:56Z imp $");
35
36/*
37 * 3Com 3c90x Etherlink XL PCI NIC driver
38 *
39 * Supports the 3Com "boomerang", "cyclone" and "hurricane" PCI
40 * bus-master chips (3c90x cards and embedded controllers) including
41 * the following:
42 *

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

1057 struct xl_type *t;
1058
1059 t = xl_devs;
1060
1061 while (t->xl_name != NULL) {
1062 if ((pci_get_vendor(dev) == t->xl_vid) &&
1063 (pci_get_device(dev) == t->xl_did)) {
1064 device_set_desc(dev, t->xl_name);
35
36/*
37 * 3Com 3c90x Etherlink XL PCI NIC driver
38 *
39 * Supports the 3Com "boomerang", "cyclone" and "hurricane" PCI
40 * bus-master chips (3c90x cards and embedded controllers) including
41 * the following:
42 *

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

1057 struct xl_type *t;
1058
1059 t = xl_devs;
1060
1061 while (t->xl_name != NULL) {
1062 if ((pci_get_vendor(dev) == t->xl_vid) &&
1063 (pci_get_device(dev) == t->xl_did)) {
1064 device_set_desc(dev, t->xl_name);
1065 return (0);
1065 return (BUS_PROBE_DEFAULT);
1066 }
1067 t++;
1068 }
1069
1070 return (ENXIO);
1071}
1072
1073/*

--- 2178 unchanged lines hidden ---
1066 }
1067 t++;
1068 }
1069
1070 return (ENXIO);
1071}
1072
1073/*

--- 2178 unchanged lines hidden ---