net: mscc: ocelot: unregister net devices on unbind
This driver was not unregistering its network interfaces on unbind. Now it is. Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Horatiu Vultur <horatiu.vultur@microchip.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Tested-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Reviewed-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
7c411799e1
commit
22cdb493de
@@ -896,6 +896,26 @@ static struct ptp_clock_info ocelot_ptp_clock_info = {
|
|||||||
.enable = ocelot_ptp_enable,
|
.enable = ocelot_ptp_enable,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void mscc_ocelot_release_ports(struct ocelot *ocelot)
|
||||||
|
{
|
||||||
|
int port;
|
||||||
|
|
||||||
|
for (port = 0; port < ocelot->num_phys_ports; port++) {
|
||||||
|
struct ocelot_port_private *priv;
|
||||||
|
struct ocelot_port *ocelot_port;
|
||||||
|
|
||||||
|
ocelot_port = ocelot->ports[port];
|
||||||
|
if (!ocelot_port)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
priv = container_of(ocelot_port, struct ocelot_port_private,
|
||||||
|
port);
|
||||||
|
|
||||||
|
unregister_netdev(priv->dev);
|
||||||
|
free_netdev(priv->dev);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static int mscc_ocelot_init_ports(struct platform_device *pdev,
|
static int mscc_ocelot_init_ports(struct platform_device *pdev,
|
||||||
struct device_node *ports)
|
struct device_node *ports)
|
||||||
{
|
{
|
||||||
@@ -1132,6 +1152,7 @@ static int mscc_ocelot_remove(struct platform_device *pdev)
|
|||||||
struct ocelot *ocelot = platform_get_drvdata(pdev);
|
struct ocelot *ocelot = platform_get_drvdata(pdev);
|
||||||
|
|
||||||
ocelot_deinit_timestamp(ocelot);
|
ocelot_deinit_timestamp(ocelot);
|
||||||
|
mscc_ocelot_release_ports(ocelot);
|
||||||
ocelot_deinit(ocelot);
|
ocelot_deinit(ocelot);
|
||||||
unregister_switchdev_blocking_notifier(&ocelot_switchdev_blocking_nb);
|
unregister_switchdev_blocking_notifier(&ocelot_switchdev_blocking_nb);
|
||||||
unregister_switchdev_notifier(&ocelot_switchdev_nb);
|
unregister_switchdev_notifier(&ocelot_switchdev_nb);
|
||||||
|
|||||||
Reference in New Issue
Block a user