Commit 9d8cfa9d authored by Ioana Ciornei's avatar Ioana Ciornei Committed by Greg Kroah-Hartman

staging: fsl-dpaa2/ethsw: remove IGMP default address

Do not add an IGMP multicast address by default since we do not support
Rx/Tx ar the moment.
Reported-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarIoana Ciornei <ioana.ciornei@nxp.com>
Link: https://lore.kernel.org/r/1565700187-16048-2-git-send-email-ioana.ciornei@nxp.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 759b2e69
...@@ -1506,7 +1506,6 @@ static int ethsw_init(struct fsl_mc_device *sw_dev) ...@@ -1506,7 +1506,6 @@ static int ethsw_init(struct fsl_mc_device *sw_dev)
static int ethsw_port_init(struct ethsw_port_priv *port_priv, u16 port) static int ethsw_port_init(struct ethsw_port_priv *port_priv, u16 port)
{ {
const char def_mcast[ETH_ALEN] = {0x01, 0x00, 0x5e, 0x00, 0x00, 0x01};
struct net_device *netdev = port_priv->netdev; struct net_device *netdev = port_priv->netdev;
struct ethsw_core *ethsw = port_priv->ethsw_data; struct ethsw_core *ethsw = port_priv->ethsw_data;
struct dpsw_vlan_if_cfg vcfg; struct dpsw_vlan_if_cfg vcfg;
...@@ -1532,12 +1531,10 @@ static int ethsw_port_init(struct ethsw_port_priv *port_priv, u16 port) ...@@ -1532,12 +1531,10 @@ static int ethsw_port_init(struct ethsw_port_priv *port_priv, u16 port)
err = dpsw_vlan_remove_if(ethsw->mc_io, 0, ethsw->dpsw_handle, err = dpsw_vlan_remove_if(ethsw->mc_io, 0, ethsw->dpsw_handle,
DEFAULT_VLAN_ID, &vcfg); DEFAULT_VLAN_ID, &vcfg);
if (err) { if (err)
netdev_err(netdev, "dpsw_vlan_remove_if err %d\n", err); netdev_err(netdev, "dpsw_vlan_remove_if err %d\n", err);
return err;
}
return ethsw_port_fdb_add_mc(port_priv, def_mcast); return err;
} }
static void ethsw_unregister_notifier(struct device *dev) static void ethsw_unregister_notifier(struct device *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment