bnx2x: Add missing braces in bnx2x:bnx2x_link_initialize
The indentation here implies that the intent was for this to be a multiline if.
Introduced a few years ago in commit ec146a6f01
("bnx2x: Modify XGXS functions")
Signed-off-by: Dave Jones <davej@fedoraproject.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
f011baf95e
commit
c0a77ec74f
@@ -6501,13 +6501,14 @@ static int bnx2x_link_initialize(struct link_params *params,
|
|||||||
struct bnx2x_phy *phy = ¶ms->phy[INT_PHY];
|
struct bnx2x_phy *phy = ¶ms->phy[INT_PHY];
|
||||||
if (vars->line_speed == SPEED_AUTO_NEG &&
|
if (vars->line_speed == SPEED_AUTO_NEG &&
|
||||||
(CHIP_IS_E1x(bp) ||
|
(CHIP_IS_E1x(bp) ||
|
||||||
CHIP_IS_E2(bp)))
|
CHIP_IS_E2(bp))) {
|
||||||
bnx2x_set_parallel_detection(phy, params);
|
bnx2x_set_parallel_detection(phy, params);
|
||||||
if (params->phy[INT_PHY].config_init)
|
if (params->phy[INT_PHY].config_init)
|
||||||
params->phy[INT_PHY].config_init(phy,
|
params->phy[INT_PHY].config_init(phy,
|
||||||
params,
|
params,
|
||||||
vars);
|
vars);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Init external phy*/
|
/* Init external phy*/
|
||||||
if (non_ext_phy) {
|
if (non_ext_phy) {
|
||||||
|
Reference in New Issue
Block a user