aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/dsa/microchip/ksz_common.c
diff options
context:
space:
mode:
authorVivien Didelot <vivien.didelot@savoirfairelinux.com>2017-11-30 11:23:58 -0500
committerDavid S. Miller <davem@davemloft.net>2017-12-02 21:18:56 -0500
commit3709aadc8375a1b0c42da5b12e38eddf8133dd4e (patch)
tree99012d5f5ec8279d23dee2c9475ed3e8a1853985 /drivers/net/dsa/microchip/ksz_common.c
parent80e023607982faa6245507c45acf93bb0feb0ded (diff)
net: dsa: remove trans argument from mdb ops
The DSA switch MDB ops pass the switchdev_trans structure down to the drivers, but no one is using them and they aren't supposed to anyway. Remove the trans argument from MDB prepare and add operations. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/microchip/ksz_common.c')
-rw-r--r--drivers/net/dsa/microchip/ksz_common.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/dsa/microchip/ksz_common.c b/drivers/net/dsa/microchip/ksz_common.c
index 25b94edc5526..663b0d5b982b 100644
--- a/drivers/net/dsa/microchip/ksz_common.c
+++ b/drivers/net/dsa/microchip/ksz_common.c
@@ -856,16 +856,14 @@ exit:
856} 856}
857 857
858static int ksz_port_mdb_prepare(struct dsa_switch *ds, int port, 858static int ksz_port_mdb_prepare(struct dsa_switch *ds, int port,
859 const struct switchdev_obj_port_mdb *mdb, 859 const struct switchdev_obj_port_mdb *mdb)
860 struct switchdev_trans *trans)
861{ 860{
862 /* nothing to do */ 861 /* nothing to do */
863 return 0; 862 return 0;
864} 863}
865 864
866static void ksz_port_mdb_add(struct dsa_switch *ds, int port, 865static void ksz_port_mdb_add(struct dsa_switch *ds, int port,
867 const struct switchdev_obj_port_mdb *mdb, 866 const struct switchdev_obj_port_mdb *mdb)
868 struct switchdev_trans *trans)
869{ 867{
870 struct ksz_device *dev = ds->priv; 868 struct ksz_device *dev = ds->priv;
871 u32 static_table[4]; 869 u32 static_table[4];