diff options
author | Ido Schimmel <idosch@mellanox.com> | 2016-06-21 00:04:08 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-21 12:02:49 +0300 |
commit | 47a0a9e6c38325028d8fa4eb764687fbeaee8ef2 (patch) | |
tree | 5154c0c150ff119d452b674c5ae6c614c645de74 /drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c | |
parent | d8651fd8868e340eddc41e1907a973a3d21de993 (diff) | |
download | linux-47a0a9e6c38325028d8fa4eb764687fbeaee8ef2.tar.xz |
mlxsw: spectrum: Remove redundant function argument
In all call sites 'only_uc' is set to false, so strip it.
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c b/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c index 3710f19ed6bb..02c126cc2419 100644 --- a/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c +++ b/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c @@ -261,13 +261,13 @@ err_port_flood_set: } int mlxsw_sp_vport_flood_set(struct mlxsw_sp_port *mlxsw_sp_vport, u16 vfid, - bool set, bool only_uc) + bool set) { /* In case of vFIDs, index into the flooding table is relative to * the start of the vFIDs range. */ return __mlxsw_sp_port_flood_set(mlxsw_sp_vport, vfid, vfid, set, - only_uc); + false); } static int mlxsw_sp_port_attr_br_flags_set(struct mlxsw_sp_port *mlxsw_sp_port, |