mlxsw: reg: 80 columns wrapping change
authorShalom Toledo <shalomt@mellanox.com>
Fri, 22 Feb 2019 13:56:42 +0000 (13:56 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sat, 23 Feb 2019 21:54:36 +0000 (13:54 -0800)
80 columns wrapping change in mlxsw_reg_ptys_eth_unpack function.

Signed-off-by: Shalom Toledo <shalomt@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/reg.h

index 34c5e60..a174ff2 100644 (file)
@@ -4095,11 +4095,14 @@ static inline void mlxsw_reg_ptys_eth_unpack(char *payload,
                                             u32 *p_eth_proto_oper)
 {
        if (p_eth_proto_cap)
-               *p_eth_proto_cap = mlxsw_reg_ptys_eth_proto_cap_get(payload);
+               *p_eth_proto_cap =
+                       mlxsw_reg_ptys_eth_proto_cap_get(payload);
        if (p_eth_proto_admin)
-               *p_eth_proto_admin = mlxsw_reg_ptys_eth_proto_admin_get(payload);
+               *p_eth_proto_admin =
+                       mlxsw_reg_ptys_eth_proto_admin_get(payload);
        if (p_eth_proto_oper)
-               *p_eth_proto_oper = mlxsw_reg_ptys_eth_proto_oper_get(payload);
+               *p_eth_proto_oper =
+                       mlxsw_reg_ptys_eth_proto_oper_get(payload);
 }
 
 static inline void mlxsw_reg_ptys_ib_pack(char *payload, u8 local_port,