Deleted Added
full compact
if_ixgb.c (139749) if_ixgb.c (143160)
1/*******************************************************************************
2
3Copyright (c) 2001-2004, Intel Corporation
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8

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

26SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30POSSIBILITY OF SUCH DAMAGE.
31
32***************************************************************************/
33
1/*******************************************************************************
2
3Copyright (c) 2001-2004, Intel Corporation
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8

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

26SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30POSSIBILITY OF SUCH DAMAGE.
31
32***************************************************************************/
33
34/*$FreeBSD: head/sys/dev/ixgb/if_ixgb.c 139749 2005-01-06 01:43:34Z imp $*/
34/*$FreeBSD: head/sys/dev/ixgb/if_ixgb.c 143160 2005-03-05 18:17:35Z imp $*/
35
36#include <dev/ixgb/if_ixgb.h>
37
38/*********************************************************************
39 * Set this to one to display debug statistics
40 *********************************************************************/
41int ixgb_display_debug_stats = 0;
42

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

207 (ent->subvendor_id == PCI_ANY_ID)) &&
208
209 ((pci_subdevice_id == ent->subdevice_id) ||
210 (ent->subdevice_id == PCI_ANY_ID))) {
211 sprintf(adapter_name, "%s, Version - %s",
212 ixgb_strings[ent->index],
213 ixgb_driver_version);
214 device_set_desc_copy(dev, adapter_name);
35
36#include <dev/ixgb/if_ixgb.h>
37
38/*********************************************************************
39 * Set this to one to display debug statistics
40 *********************************************************************/
41int ixgb_display_debug_stats = 0;
42

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

207 (ent->subvendor_id == PCI_ANY_ID)) &&
208
209 ((pci_subdevice_id == ent->subdevice_id) ||
210 (ent->subdevice_id == PCI_ANY_ID))) {
211 sprintf(adapter_name, "%s, Version - %s",
212 ixgb_strings[ent->index],
213 ixgb_driver_version);
214 device_set_desc_copy(dev, adapter_name);
215 return (0);
215 return (BUS_PROBE_DEFAULT);
216 }
217 ent++;
218 }
219
220 return (ENXIO);
221}
222
223/*********************************************************************

--- 2262 unchanged lines hidden ---
216 }
217 ent++;
218 }
219
220 return (ENXIO);
221}
222
223/*********************************************************************

--- 2262 unchanged lines hidden ---