diff options
| -rw-r--r-- | drivers/net/ethernet/intel/e1000/e1000_hw.c | 124 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/e1000/e1000_main.c | 11 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/e1000e/netdev.c | 10 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/i40evf/i40e_txrx.c | 10 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/i40evf/i40evf_main.c | 20 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/igb/igb.h | 16 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/igb/igb_main.c | 13 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/igb/igb_ptp.c | 14 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/igbvf/netdev.c | 16 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/ixgb/ixgb_main.c | 10 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/ixgbe/ixgbe.h | 1 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 28 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/ixgbevf/ixgbevf.h | 1 | ||||
| -rw-r--r-- | drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 20 |
14 files changed, 91 insertions, 203 deletions
diff --git a/drivers/net/ethernet/intel/e1000/e1000_hw.c b/drivers/net/ethernet/intel/e1000/e1000_hw.c index 2879b9631e15..c1d3fdb296a0 100644 --- a/drivers/net/ethernet/intel/e1000/e1000_hw.c +++ b/drivers/net/ethernet/intel/e1000/e1000_hw.c | |||
| @@ -115,8 +115,6 @@ static DEFINE_SPINLOCK(e1000_phy_lock); | |||
| 115 | */ | 115 | */ |
| 116 | static s32 e1000_set_phy_type(struct e1000_hw *hw) | 116 | static s32 e1000_set_phy_type(struct e1000_hw *hw) |
| 117 | { | 117 | { |
| 118 | e_dbg("e1000_set_phy_type"); | ||
| 119 | |||
| 120 | if (hw->mac_type == e1000_undefined) | 118 | if (hw->mac_type == e1000_undefined) |
| 121 | return -E1000_ERR_PHY_TYPE; | 119 | return -E1000_ERR_PHY_TYPE; |
| 122 | 120 | ||
| @@ -159,8 +157,6 @@ static void e1000_phy_init_script(struct e1000_hw *hw) | |||
| 159 | u32 ret_val; | 157 | u32 ret_val; |
| 160 | u16 phy_saved_data; | 158 | u16 phy_saved_data; |
| 161 | 159 | ||
| 162 | e_dbg("e1000_phy_init_script"); | ||
| 163 | |||
| 164 | if (hw->phy_init_script) { | 160 | if (hw->phy_init_script) { |
| 165 | msleep(20); | 161 | msleep(20); |
| 166 | 162 | ||
| @@ -253,8 +249,6 @@ static void e1000_phy_init_script(struct e1000_hw *hw) | |||
| 253 | */ | 249 | */ |
| 254 | s32 e1000_set_mac_type(struct e1000_hw *hw) | 250 | s32 e1000_set_mac_type(struct e1000_hw *hw) |
| 255 | { | 251 | { |
| 256 | e_dbg("e1000_set_mac_type"); | ||
| 257 | |||
| 258 | switch (hw->device_id) { | 252 | switch (hw->device_id) { |
| 259 | case E1000_DEV_ID_82542: | 253 | case E1000_DEV_ID_82542: |
| 260 | switch (hw->revision_id) { | 254 | switch (hw->revision_id) { |
| @@ -365,8 +359,6 @@ void e1000_set_media_type(struct e1000_hw *hw) | |||
| 365 | { | 359 | { |
| 366 | u32 status; | 360 | u32 status; |
| 367 | 361 | ||
| 368 | e_dbg("e1000_set_media_type"); | ||
| 369 | |||
| 370 | if (hw->mac_type != e1000_82543) { | 362 | if (hw->mac_type != e1000_82543) { |
| 371 | /* tbi_compatibility is only valid on 82543 */ | 363 | /* tbi_compatibility is only valid on 82543 */ |
| 372 | hw->tbi_compatibility_en = false; | 364 | hw->tbi_compatibility_en = false; |
| @@ -415,8 +407,6 @@ s32 e1000_reset_hw(struct e1000_hw *hw) | |||
| 415 | u32 led_ctrl; | 407 | u32 led_ctrl; |
| 416 | s32 ret_val; | 408 | s32 ret_val; |
| 417 | 409 | ||
| 418 | e_dbg("e1000_reset_hw"); | ||
| 419 | |||
| 420 | /* For 82542 (rev 2.0), disable MWI before issuing a device reset */ | 410 | /* For 82542 (rev 2.0), disable MWI before issuing a device reset */ |
| 421 | if (hw->mac_type == e1000_82542_rev2_0) { | 411 | if (hw->mac_type == e1000_82542_rev2_0) { |
| 422 | e_dbg("Disabling MWI on 82542 rev 2.0\n"); | 412 | e_dbg("Disabling MWI on 82542 rev 2.0\n"); |
| @@ -566,8 +556,6 @@ s32 e1000_init_hw(struct e1000_hw *hw) | |||
| 566 | u32 mta_size; | 556 | u32 mta_size; |
| 567 | u32 ctrl_ext; | 557 | u32 ctrl_ext; |
| 568 | 558 | ||
| 569 | e_dbg("e1000_init_hw"); | ||
| 570 | |||
| 571 | /* Initialize Identification LED */ | 559 | /* Initialize Identification LED */ |
| 572 | ret_val = e1000_id_led_init(hw); | 560 | ret_val = e1000_id_led_init(hw); |
| 573 | if (ret_val) { | 561 | if (ret_val) { |
| @@ -683,8 +671,6 @@ static s32 e1000_adjust_serdes_amplitude(struct e1000_hw *hw) | |||
| 683 | u16 eeprom_data; | 671 | u16 eeprom_data; |
| 684 | s32 ret_val; | 672 | s32 ret_val; |
| 685 | 673 | ||
| 686 | e_dbg("e1000_adjust_serdes_amplitude"); | ||
| 687 | |||
| 688 | if (hw->media_type != e1000_media_type_internal_serdes) | 674 | if (hw->media_type != e1000_media_type_internal_serdes) |
| 689 | return E1000_SUCCESS; | 675 | return E1000_SUCCESS; |
| 690 | 676 | ||
| @@ -730,8 +716,6 @@ s32 e1000_setup_link(struct e1000_hw *hw) | |||
| 730 | s32 ret_val; | 716 | s32 ret_val; |
| 731 | u16 eeprom_data; | 717 | u16 eeprom_data; |
| 732 | 718 | ||
| 733 | e_dbg("e1000_setup_link"); | ||
| 734 | |||
| 735 | /* Read and store word 0x0F of the EEPROM. This word contains bits | 719 | /* Read and store word 0x0F of the EEPROM. This word contains bits |
| 736 | * that determine the hardware's default PAUSE (flow control) mode, | 720 | * that determine the hardware's default PAUSE (flow control) mode, |
| 737 | * a bit that determines whether the HW defaults to enabling or | 721 | * a bit that determines whether the HW defaults to enabling or |
| @@ -848,8 +832,6 @@ static s32 e1000_setup_fiber_serdes_link(struct e1000_hw *hw) | |||
| 848 | u32 signal = 0; | 832 | u32 signal = 0; |
| 849 | s32 ret_val; | 833 | s32 ret_val; |
| 850 | 834 | ||
| 851 | e_dbg("e1000_setup_fiber_serdes_link"); | ||
| 852 | |||
| 853 | /* On adapters with a MAC newer than 82544, SWDP 1 will be | 835 | /* On adapters with a MAC newer than 82544, SWDP 1 will be |
| 854 | * set when the optics detect a signal. On older adapters, it will be | 836 | * set when the optics detect a signal. On older adapters, it will be |
| 855 | * cleared when there is a signal. This applies to fiber media only. | 837 | * cleared when there is a signal. This applies to fiber media only. |
| @@ -1051,8 +1033,6 @@ static s32 e1000_copper_link_preconfig(struct e1000_hw *hw) | |||
| 1051 | s32 ret_val; | 1033 | s32 ret_val; |
| 1052 | u16 phy_data; | 1034 | u16 phy_data; |
| 1053 | 1035 | ||
| 1054 | e_dbg("e1000_copper_link_preconfig"); | ||
| 1055 | |||
| 1056 | ctrl = er32(CTRL); | 1036 | ctrl = er32(CTRL); |
| 1057 | /* With 82543, we need to force speed and duplex on the MAC equal to | 1037 | /* With 82543, we need to force speed and duplex on the MAC equal to |
| 1058 | * what the PHY speed and duplex configuration is. In addition, we need | 1038 | * what the PHY speed and duplex configuration is. In addition, we need |
| @@ -1112,8 +1092,6 @@ static s32 e1000_copper_link_igp_setup(struct e1000_hw *hw) | |||
| 1112 | s32 ret_val; | 1092 | s32 ret_val; |
| 1113 | u16 phy_data; | 1093 | u16 phy_data; |
| 1114 | 1094 | ||
| 1115 | e_dbg("e1000_copper_link_igp_setup"); | ||
| 1116 | |||
| 1117 | if (hw->phy_reset_disable) | 1095 | if (hw->phy_reset_disable) |
| 1118 | return E1000_SUCCESS; | 1096 | return E1000_SUCCESS; |
| 1119 | 1097 | ||
| @@ -1254,8 +1232,6 @@ static s32 e1000_copper_link_mgp_setup(struct e1000_hw *hw) | |||
| 1254 | s32 ret_val; | 1232 | s32 ret_val; |
| 1255 | u16 phy_data; | 1233 | u16 phy_data; |
| 1256 | 1234 | ||
| 1257 | e_dbg("e1000_copper_link_mgp_setup"); | ||
| 1258 | |||
| 1259 | if (hw->phy_reset_disable) | 1235 | if (hw->phy_reset_disable) |
| 1260 | return E1000_SUCCESS; | 1236 | return E1000_SUCCESS; |
| 1261 | 1237 | ||
| @@ -1362,8 +1338,6 @@ static s32 e1000_copper_link_autoneg(struct e1000_hw *hw) | |||
| 1362 | s32 ret_val; | 1338 | s32 ret_val; |
| 1363 | u16 phy_data; | 1339 | u16 phy_data; |
| 1364 | 1340 | ||
| 1365 | e_dbg("e1000_copper_link_autoneg"); | ||
| 1366 | |||
| 1367 | /* Perform some bounds checking on the hw->autoneg_advertised | 1341 | /* Perform some bounds checking on the hw->autoneg_advertised |
| 1368 | * parameter. If this variable is zero, then set it to the default. | 1342 | * parameter. If this variable is zero, then set it to the default. |
| 1369 | */ | 1343 | */ |
| @@ -1432,7 +1406,6 @@ static s32 e1000_copper_link_autoneg(struct e1000_hw *hw) | |||
| 1432 | static s32 e1000_copper_link_postconfig(struct e1000_hw *hw) | 1406 | static s32 e1000_copper_link_postconfig(struct e1000_hw *hw) |
| 1433 | { | 1407 | { |
| 1434 | s32 ret_val; | 1408 | s32 ret_val; |
| 1435 | e_dbg("e1000_copper_link_postconfig"); | ||
| 1436 | 1409 | ||
| 1437 | if ((hw->mac_type >= e1000_82544) && (hw->mac_type != e1000_ce4100)) { | 1410 | if ((hw->mac_type >= e1000_82544) && (hw->mac_type != e1000_ce4100)) { |
| 1438 | e1000_config_collision_dist(hw); | 1411 | e1000_config_collision_dist(hw); |
| @@ -1473,8 +1446,6 @@ static s32 e1000_setup_copper_link(struct e1000_hw *hw) | |||
| 1473 | u16 i; | 1446 | u16 i; |
| 1474 | u16 phy_data; | 1447 | u16 phy_data; |
