mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
drivers/net/bnx2x: Adjust confusing if indentation
Outdent the code following the if. The semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r disable braces4@ position p1,p2; statement S1,S2; @@ ( if (...) { ... } | if (...) S1@p1 S2@p2 ) @script:python@ p1 << r.p1; p2 << r.p2; @@ if (p1[0].column == p2[0].column): cocci.print_main("branch",p1) cocci.print_secs("after",p2) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Acked-by: Eilon Greenstein <eilong@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2145f1afc6
commit
cc81735e80
@ -1254,11 +1254,11 @@ static void bnx2x_set_autoneg(struct link_params *params,
|
||||
PORT_HW_CFG_SPEED_CAPABILITY_D0_1G)
|
||||
reg_val |= MDIO_CL73_IEEEB1_AN_ADV2_ADVR_1000M_KX;
|
||||
|
||||
CL45_WR_OVER_CL22(bp, params->port,
|
||||
params->phy_addr,
|
||||
MDIO_REG_BANK_CL73_IEEEB1,
|
||||
MDIO_CL73_IEEEB1_AN_ADV2,
|
||||
reg_val);
|
||||
CL45_WR_OVER_CL22(bp, params->port,
|
||||
params->phy_addr,
|
||||
MDIO_REG_BANK_CL73_IEEEB1,
|
||||
MDIO_CL73_IEEEB1_AN_ADV2,
|
||||
reg_val);
|
||||
|
||||
/* CL73 Autoneg Enabled */
|
||||
reg_val = MDIO_CL73_IEEEB0_CL73_AN_CONTROL_AN_EN;
|
||||
|
Loading…
Reference in New Issue
Block a user