Commit 2b120dde authored by Claudiu Manoil's avatar Claudiu Manoil Committed by David S. Miller
Browse files

net: mscc: ocelot: initialize list of multicast addresses in common code



This is just common path code that belongs to ocelot_init,
it has nothing to do with a specific SoC/board instance.

Signed-off-by: default avatarClaudiu Manoil <claudiu.manoil@nxp.com>
Signed-off-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 889b8950
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2243,6 +2243,7 @@ int ocelot_init(struct ocelot *ocelot)
	if (!ocelot->stats_queue)
		return -ENOMEM;

	INIT_LIST_HEAD(&ocelot->multicast);
	ocelot_mact_init(ocelot);
	ocelot_vlan_init(ocelot);
	ocelot_ace_init(ocelot);
+0 −1
Original line number Diff line number Diff line
@@ -364,7 +364,6 @@ static int mscc_ocelot_probe(struct platform_device *pdev)
	ocelot->ports = devm_kcalloc(&pdev->dev, ocelot->num_phys_ports,
				     sizeof(struct ocelot_port *), GFP_KERNEL);

	INIT_LIST_HEAD(&ocelot->multicast);
	ocelot_init(ocelot);

	for_each_available_child_of_node(ports, portnp) {