diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2019-10-24 12:45:08 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-10-28 13:58:20 -0700 |
commit | 29bb5e8337caf2e3d9802ee6a6804561f125bfcf (patch) | |
tree | 02da828b60e7303690f1b383285325a6e3960afe /drivers/net/dsa | |
parent | 5d65b64a3d97011796b225ce315b3ce0011551e7 (diff) | |
download | lwn-29bb5e8337caf2e3d9802ee6a6804561f125bfcf.tar.gz lwn-29bb5e8337caf2e3d9802ee6a6804561f125bfcf.zip |
net: dsa: bcm_sf2: Wire up MDB operations
Leverage the recently add b53_mdb_{add,del,prepare} functions since they
work as-is for bcm_sf2.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Vivien Didelot <vivien.didelot@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa')
-rw-r--r-- | drivers/net/dsa/bcm_sf2.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/dsa/bcm_sf2.c b/drivers/net/dsa/bcm_sf2.c index c068a3b7207b..a4a46f8df352 100644 --- a/drivers/net/dsa/bcm_sf2.c +++ b/drivers/net/dsa/bcm_sf2.c @@ -968,6 +968,9 @@ static const struct dsa_switch_ops bcm_sf2_ops = { .set_rxnfc = bcm_sf2_set_rxnfc, .port_mirror_add = b53_mirror_add, .port_mirror_del = b53_mirror_del, + .port_mdb_prepare = b53_mdb_prepare, + .port_mdb_add = b53_mdb_add, + .port_mdb_del = b53_mdb_del, }; struct bcm_sf2_of_data { |