Commit f93fb016 authored by Yaniv Rosner's avatar Yaniv Rosner Committed by David S. Miller

bnx2x: Fix BCM57711+BCM84823 link issue

Fix a link problem on the second port of BCM57711 + BCM84823 boards due to
incorrect macro usage.
Signed-off-by: default avatarYaniv Rosner <yanivr@broadcom.com>
Signed-off-by: default avatarEilon Greenstein <eilong@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 99bf7f34
...@@ -10177,7 +10177,7 @@ static void bnx2x_848x3_link_reset(struct bnx2x_phy *phy, ...@@ -10177,7 +10177,7 @@ static void bnx2x_848x3_link_reset(struct bnx2x_phy *phy,
u8 port; u8 port;
u16 val16; u16 val16;
if (!(CHIP_IS_E1(bp))) if (!(CHIP_IS_E1x(bp)))
port = BP_PATH(bp); port = BP_PATH(bp);
else else
port = params->port; port = params->port;
...@@ -10204,7 +10204,7 @@ static void bnx2x_848xx_set_link_led(struct bnx2x_phy *phy, ...@@ -10204,7 +10204,7 @@ static void bnx2x_848xx_set_link_led(struct bnx2x_phy *phy,
u16 val; u16 val;
u8 port; u8 port;
if (!(CHIP_IS_E1(bp))) if (!(CHIP_IS_E1x(bp)))
port = BP_PATH(bp); port = BP_PATH(bp);
else else
port = params->port; port = params->port;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment