|
@@ -165,7 +165,7 @@ s32 e1000e_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data)
|
|
|
* the lower time out
|
|
|
*/
|
|
|
for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
|
|
|
- usleep_range(50, 100);
|
|
|
+ udelay(50);
|
|
|
mdic = er32(MDIC);
|
|
|
if (mdic & E1000_MDIC_READY)
|
|
|
break;
|
|
@@ -190,7 +190,7 @@ s32 e1000e_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data)
|
|
|
* reading duplicate data in the next MDIC transaction.
|
|
|
*/
|
|
|
if (hw->mac.type == e1000_pch2lan)
|
|
|
- usleep_range(100, 200);
|
|
|
+ udelay(100);
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
@@ -229,7 +229,7 @@ s32 e1000e_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data)
|
|
|
* the lower time out
|
|
|
*/
|
|
|
for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
|
|
|
- usleep_range(50, 100);
|
|
|
+ udelay(50);
|
|
|
mdic = er32(MDIC);
|
|
|
if (mdic & E1000_MDIC_READY)
|
|
|
break;
|
|
@@ -253,7 +253,7 @@ s32 e1000e_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data)
|
|
|
* reading duplicate data in the next MDIC transaction.
|
|
|
*/
|
|
|
if (hw->mac.type == e1000_pch2lan)
|
|
|
- usleep_range(100, 200);
|
|
|
+ udelay(100);
|
|
|
|
|
|
return 0;
|
|
|
}
|