mlxsw: Renaming local variable names for consistency
authorElad Raz <eladr@mellanox.com>
Wed, 6 Jan 2016 12:01:09 +0000 (13:01 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 6 Jan 2016 19:42:41 +0000 (14:42 -0500)
Signed-off-by: Elad Raz <eladr@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c

index dcf77c9..ad1bf7f 100644 (file)
@@ -545,15 +545,15 @@ static int mlxsw_sp_port_vlans_add(struct mlxsw_sp_port *mlxsw_sp_port,
                                   const struct switchdev_obj_port_vlan *vlan,
                                   struct switchdev_trans *trans)
 {
-       bool untagged_flag = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED;
-       bool pvid_flag = vlan->flags & BRIDGE_VLAN_INFO_PVID;
+       bool flag_untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED;
+       bool flag_pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID;
 
        if (switchdev_trans_ph_prepare(trans))
                return 0;
 
        return __mlxsw_sp_port_vlans_add(mlxsw_sp_port,
                                         vlan->vid_begin, vlan->vid_end,
-                                        untagged_flag, pvid_flag);
+                                        flag_untagged, flag_pvid);
 }
 
 static enum mlxsw_reg_sfd_rec_policy mlxsw_sp_sfd_rec_policy(bool dynamic)