diff options
-rw-r--r-- | drivers/net/e1000/e1000_main.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c index ca4e5e9255d2..75cd6dfbaa37 100644 --- a/drivers/net/e1000/e1000_main.c +++ b/drivers/net/e1000/e1000_main.c | |||
@@ -807,6 +807,26 @@ e1000_probe(struct pci_dev *pdev, | |||
807 | if(eeprom_data & eeprom_apme_mask) | 807 | if(eeprom_data & eeprom_apme_mask) |
808 | adapter->wol |= E1000_WUFC_MAG; | 808 | adapter->wol |= E1000_WUFC_MAG; |
809 | 809 | ||
810 | /* print bus type/speed/width info */ | ||
811 | { | ||
812 | struct e1000_hw *hw = &adapter->hw; | ||
813 | DPRINTK(PROBE, INFO, "(PCI%s:%s:%s) ", | ||
814 | ((hw->bus_type == e1000_bus_type_pcix) ? "-X" : | ||
815 | (hw->bus_type == e1000_bus_type_pci_express ? " Express":"")), | ||
816 | ((hw->bus_speed == e1000_bus_speed_2500) ? "2.5Gb/s" : | ||
817 | (hw->bus_speed == e1000_bus_speed_133) ? "133MHz" : | ||
818 | (hw->bus_speed == e1000_bus_speed_120) ? "120MHz" : | ||
819 | (hw->bus_speed == e1000_bus_speed_100) ? "100MHz" : | ||
820 | (hw->bus_speed == e1000_bus_speed_66) ? "66MHz" : "33MHz"), | ||
821 | ((hw->bus_width == e1000_bus_width_64) ? "64-bit" : | ||
822 | (hw->bus_width == e1000_bus_width_pciex_4) ? "Width x4" : | ||
823 | (hw->bus_width == e1000_bus_width_pciex_1) ? "Width x1" : | ||
824 | "32-bit")); | ||
825 | } | ||
826 | |||
827 | for (i = 0; i < 6; i++) | ||
828 | printk("%2.2x%c", netdev->dev_addr[i], i == 5 ? '\n' : ':'); | ||
829 | |||
810 | /* reset the hardware with the new settings */ | 830 | /* reset the hardware with the new settings */ |
811 | e1000_reset(adapter); | 831 | e1000_reset(adapter); |
812 | 832 | ||