diff options
author | Yaniv Rosner <yanivr@broadcom.com> | 2011-08-03 03:00:12 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-08-03 14:22:18 +0400 |
commit | 28f4881cbf9ce285edfc245a8990af36d21c062f (patch) | |
tree | b64979de5a6a58348d8b625d1b8d4d121dc2340a /drivers/net/bnx2x/bnx2x_link.c | |
parent | afad009ad76ece72a3c9629bbc08f14459b9bba7 (diff) | |
download | linux-28f4881cbf9ce285edfc245a8990af36d21c062f.tar.xz |
bnx2x: Clear MDIO access warning during first driver load
Signed-off-by: Yaniv Rosner <yanivr@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2x/bnx2x_link.c')
-rw-r--r-- | drivers/net/bnx2x/bnx2x_link.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/net/bnx2x/bnx2x_link.c b/drivers/net/bnx2x/bnx2x_link.c index 01fb92c37a9f..d45b1555a602 100644 --- a/drivers/net/bnx2x/bnx2x_link.c +++ b/drivers/net/bnx2x/bnx2x_link.c @@ -11724,12 +11724,16 @@ int bnx2x_link_reset(struct link_params *params, struct link_vars *vars, bnx2x_set_led(params, vars, LED_MODE_OFF, 0); if (reset_ext_phy) { + bnx2x_set_mdio_clk(bp, params->chip_id, port); for (phy_index = EXT_PHY1; phy_index < params->num_phys; phy_index++) { - if (params->phy[phy_index].link_reset) + if (params->phy[phy_index].link_reset) { + bnx2x_set_aer_mmd(params, + ¶ms->phy[phy_index]); params->phy[phy_index].link_reset( ¶ms->phy[phy_index], params); + } if (params->phy[phy_index].flags & FLAGS_REARM_LATCH_SIGNAL) clear_latch_ind = 1; |