diff options
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/igb/igb_main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/igb/igb_main.c b/drivers/net/igb/igb_main.c index ca842163dce4..be02045a5078 100644 --- a/drivers/net/igb/igb_main.c +++ b/drivers/net/igb/igb_main.c | |||
@@ -1476,9 +1476,10 @@ static int __devinit igb_probe(struct pci_dev *pdev, | |||
1476 | netdev->name, | 1476 | netdev->name, |
1477 | ((hw->bus.speed == e1000_bus_speed_2500) | 1477 | ((hw->bus.speed == e1000_bus_speed_2500) |
1478 | ? "2.5Gb/s" : "unknown"), | 1478 | ? "2.5Gb/s" : "unknown"), |
1479 | ((hw->bus.width == e1000_bus_width_pcie_x4) | 1479 | ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" : |
1480 | ? "Width x4" : (hw->bus.width == e1000_bus_width_pcie_x1) | 1480 | (hw->bus.width == e1000_bus_width_pcie_x2) ? "Width x2" : |
1481 | ? "Width x1" : "unknown"), | 1481 | (hw->bus.width == e1000_bus_width_pcie_x1) ? "Width x1" : |
1482 | "unknown"), | ||
1482 | netdev->dev_addr); | 1483 | netdev->dev_addr); |
1483 | 1484 | ||
1484 | igb_read_part_num(hw, &part_num); | 1485 | igb_read_part_num(hw, &part_num); |