Skip to content

Commit

Permalink
net: ethernet: remove unnecessary platform_set_drvdata()
Browse files Browse the repository at this point in the history
The driver core clears the driver data to NULL after device_release
or on probe failure, since commit 0998d06
(device-core: Ensure drvdata = NULL when no driver is bound).
Thus, it is not needed to manually clear the device driver data to NULL.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: Rob Herring <rob.herring@calxeda.com>
Acked-by: Roland Stigge <stigge@antcom.de>
Acked-by: Mugunthan V N <mugunthanvnm@ti.com>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Tested-by: Roland Stigge <stigge@antcom.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jingoo Han authored and David S. Miller committed May 28, 2013
1 parent 3acfeac commit dfd93c9
Show file tree
Hide file tree
Showing 37 changed files with 0 additions and 61 deletions.
1 change: 0 additions & 1 deletion drivers/net/ethernet/8390/ne.c
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,6 @@ static int ne_drv_remove(struct platform_device *pdev)
free_irq(dev->irq, dev);
release_region(dev->base_addr, NE_IO_EXTENT);
free_netdev(dev);
platform_set_drvdata(pdev, NULL);
}
return 0;
}
Expand Down
4 changes: 0 additions & 4 deletions drivers/net/ethernet/adi/bfin_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1719,7 +1719,6 @@ static int bfin_mac_probe(struct platform_device *pdev)
mdiobus_unregister(lp->mii_bus);
mdiobus_free(lp->mii_bus);
out_err_probe_mac:
platform_set_drvdata(pdev, NULL);
free_netdev(ndev);

return rc;
Expand All @@ -1732,8 +1731,6 @@ static int bfin_mac_remove(struct platform_device *pdev)

bfin_phc_release(lp);

platform_set_drvdata(pdev, NULL);

lp->mii_bus->priv = NULL;

unregister_netdev(ndev);
Expand Down Expand Up @@ -1868,7 +1865,6 @@ static int bfin_mii_bus_remove(struct platform_device *pdev)
struct bfin_mii_bus_platform_data *mii_bus_pd =
dev_get_platdata(&pdev->dev);

platform_set_drvdata(pdev, NULL);
mdiobus_unregister(miibus);
kfree(miibus->irq);
mdiobus_free(miibus);
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/amd/au1000_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -1301,8 +1301,6 @@ static int au1000_remove(struct platform_device *pdev)
int i;
struct resource *base, *macen;

platform_set_drvdata(pdev, NULL);

unregister_netdev(dev);
mdiobus_unregister(aup->mii_bus);
mdiobus_free(aup->mii_bus);
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/broadcom/bcm63xx_enet.c
Original file line number Diff line number Diff line change
Expand Up @@ -1847,7 +1847,6 @@ static int bcm_enet_remove(struct platform_device *pdev)
clk_disable_unprepare(priv->mac_clk);
clk_put(priv->mac_clk);

platform_set_drvdata(pdev, NULL);
free_netdev(dev);
return 0;
}
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/cadence/at91_ether.c
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,6 @@ static int at91ether_remove(struct platform_device *pdev)
unregister_netdev(dev);
clk_disable(lp->pclk);
free_netdev(dev);
platform_set_drvdata(pdev, NULL);

return 0;
}
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/cadence/macb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1649,7 +1649,6 @@ static int __init macb_probe(struct platform_device *pdev)
err_out_free_dev:
free_netdev(dev);
err_out:
platform_set_drvdata(pdev, NULL);
return err;
}

Expand All @@ -1675,7 +1674,6 @@ static int __exit macb_remove(struct platform_device *pdev)
clk_disable_unprepare(bp->pclk);
clk_put(bp->pclk);
free_netdev(dev);
platform_set_drvdata(pdev, NULL);
}

return 0;
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/calxeda/xgmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1790,7 +1790,6 @@ static int xgmac_probe(struct platform_device *pdev)
free_netdev(ndev);
err_alloc:
release_mem_region(res->start, resource_size(res));
platform_set_drvdata(pdev, NULL);
return ret;
}

Expand All @@ -1813,7 +1812,6 @@ static int xgmac_remove(struct platform_device *pdev)
free_irq(ndev->irq, ndev);
free_irq(priv->pmt_irq, ndev);

platform_set_drvdata(pdev, NULL);
unregister_netdev(ndev);
netif_napi_del(&priv->napi);

Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/cirrus/ep93xx_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,6 @@ static int ep93xx_eth_remove(struct platform_device *pdev)
dev = platform_get_drvdata(pdev);
if (dev == NULL)
return 0;
platform_set_drvdata(pdev, NULL);

ep = netdev_priv(dev);

Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/davicom/dm9000.c
Original file line number Diff line number Diff line change
Expand Up @@ -1699,8 +1699,6 @@ dm9000_drv_remove(struct platform_device *pdev)
{
struct net_device *ndev = platform_get_drvdata(pdev);

platform_set_drvdata(pdev, NULL);

unregister_netdev(ndev);
dm9000_release_board(pdev, netdev_priv(ndev));
free_netdev(ndev); /* free device structure */
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/ethoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1147,8 +1147,6 @@ static int ethoc_remove(struct platform_device *pdev)
struct net_device *netdev = platform_get_drvdata(pdev);
struct ethoc *priv = netdev_priv(netdev);

platform_set_drvdata(pdev, NULL);

if (netdev) {
netif_napi_del(&priv->napi);
phy_disconnect(priv->phy);
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/faraday/ftgmac100.c
Original file line number Diff line number Diff line change
Expand Up @@ -1311,7 +1311,6 @@ static int ftgmac100_probe(struct platform_device *pdev)
release_resource(priv->res);
err_req_mem:
netif_napi_del(&priv->napi);
platform_set_drvdata(pdev, NULL);
free_netdev(netdev);
err_alloc_etherdev:
return err;
Expand All @@ -1335,7 +1334,6 @@ static int __exit ftgmac100_remove(struct platform_device *pdev)
release_resource(priv->res);

netif_napi_del(&priv->napi);
platform_set_drvdata(pdev, NULL);
free_netdev(netdev);
return 0;
}
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/faraday/ftmac100.c
Original file line number Diff line number Diff line change
Expand Up @@ -1149,7 +1149,6 @@ static int ftmac100_probe(struct platform_device *pdev)
release_resource(priv->res);
err_req_mem:
netif_napi_del(&priv->napi);
platform_set_drvdata(pdev, NULL);
free_netdev(netdev);
err_alloc_etherdev:
return err;
Expand All @@ -1169,7 +1168,6 @@ static int __exit ftmac100_remove(struct platform_device *pdev)
release_resource(priv->res);

netif_napi_del(&priv->napi);
platform_set_drvdata(pdev, NULL);
free_netdev(netdev);
return 0;
}
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/freescale/fec_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2024,8 +2024,6 @@ fec_drv_remove(struct platform_device *pdev)
clk_disable_unprepare(fep->clk_ipg);
free_netdev(ndev);

platform_set_drvdata(pdev, NULL);

return 0;
}

Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/korina.c
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,6 @@ static int korina_remove(struct platform_device *pdev)
iounmap(lp->rx_dma_regs);
iounmap(lp->tx_dma_regs);

platform_set_drvdata(pdev, NULL);
unregister_netdev(bif->dev);
free_netdev(bif->dev);

Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/marvell/mv643xx_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -2813,8 +2813,6 @@ static int mv643xx_eth_remove(struct platform_device *pdev)

free_netdev(mp->dev);

platform_set_drvdata(pdev, NULL);

return 0;
}

Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/marvell/mvneta.c
Original file line number Diff line number Diff line change
Expand Up @@ -2804,8 +2804,6 @@ static int mvneta_remove(struct platform_device *pdev)
irq_dispose_mapping(dev->irq);
free_netdev(dev);

platform_set_drvdata(pdev, NULL);

return 0;
}

Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/marvell/pxa168_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -1602,7 +1602,6 @@ static int pxa168_eth_remove(struct platform_device *pdev)
unregister_netdev(dev);
cancel_work_sync(&pep->tx_timeout_task);
free_netdev(dev);
platform_set_drvdata(pdev, NULL);
return 0;
}

Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/micrel/ks8695net.c
Original file line number Diff line number Diff line change
Expand Up @@ -1600,7 +1600,6 @@ ks8695_drv_remove(struct platform_device *pdev)
struct net_device *ndev = platform_get_drvdata(pdev);
struct ks8695_priv *ksp = netdev_priv(ndev);

platform_set_drvdata(pdev, NULL);
netif_napi_del(&ksp->napi);

unregister_netdev(ndev);
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/micrel/ks8842.c
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,6 @@ static int ks8842_remove(struct platform_device *pdev)
iounmap(adapter->hw_addr);
free_netdev(netdev);
release_mem_region(iomem->start, resource_size(iomem));
platform_set_drvdata(pdev, NULL);
return 0;
}

Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/micrel/ks8851_mll.c
Original file line number Diff line number Diff line change
Expand Up @@ -1671,7 +1671,6 @@ static int ks8851_remove(struct platform_device *pdev)
iounmap(ks->hw_addr);
free_netdev(netdev);
release_mem_region(iomem->start, resource_size(iomem));
platform_set_drvdata(pdev, NULL);
return 0;

}
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/netx-eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,6 @@ static int netx_eth_drv_probe(struct platform_device *pdev)
exit_free_xc:
free_xc(priv->xc);
exit_free_netdev:
platform_set_drvdata(pdev, NULL);
free_netdev(ndev);
exit:
return ret;
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/nuvoton/w90p910_ether.c
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,6 @@ static int w90p910_ether_probe(struct platform_device *pdev)
clk_put(ether->clk);
failed_free_rxirq:
free_irq(ether->rxirq, pdev);
platform_set_drvdata(pdev, NULL);
failed_free_txirq:
free_irq(ether->txirq, pdev);
failed_free_io:
Expand Down Expand Up @@ -1080,7 +1079,6 @@ static int w90p910_ether_remove(struct platform_device *pdev)
free_irq(ether->rxirq, dev);

del_timer_sync(&ether->check_timer);
platform_set_drvdata(pdev, NULL);

free_netdev(dev);
return 0;
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/nxp/lpc_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -1483,7 +1483,6 @@ static int lpc_eth_drv_probe(struct platform_device *pdev)
return 0;

err_out_unregister_netdev:
platform_set_drvdata(pdev, NULL);
unregister_netdev(ndev);
err_out_dma_unmap:
if (!use_iram_for_net(&pldat->pdev->dev) ||
Expand Down Expand Up @@ -1511,7 +1510,6 @@ static int lpc_eth_drv_remove(struct platform_device *pdev)
struct netdata_local *pldat = netdev_priv(ndev);

unregister_netdev(ndev);
platform_set_drvdata(pdev, NULL);

if (!use_iram_for_net(&pldat->pdev->dev) ||
pldat->dma_buff_size > lpc32xx_return_iram_size())
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/renesas/sh_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -2803,7 +2803,6 @@ static int sh_eth_drv_remove(struct platform_device *pdev)
unregister_netdev(ndev);
pm_runtime_disable(&pdev->dev);
free_netdev(ndev);
platform_set_drvdata(pdev, NULL);

return 0;
}
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/s6gmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,6 @@ static int s6gmac_remove(struct platform_device *pdev)
unregister_netdev(dev);
free_irq(dev->irq, dev);
free_netdev(dev);
platform_set_drvdata(pdev, NULL);
}
return 0;
}
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/seeq/sgiseeq.c
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,6 @@ static int __exit sgiseeq_remove(struct platform_device *pdev)
dma_free_noncoherent(&pdev->dev, sizeof(*sp->srings), sp->srings,
sp->srings_dma);
free_netdev(dev);
platform_set_drvdata(pdev, NULL);

return 0;
}
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/sgi/meth.c
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,6 @@ static int __exit meth_remove(struct platform_device *pdev)

unregister_netdev(dev);
free_netdev(dev);
platform_set_drvdata(pdev, NULL);

return 0;
}
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/smsc/smc911x.c
Original file line number Diff line number Diff line change
Expand Up @@ -2087,7 +2087,6 @@ static int smc911x_drv_probe(struct platform_device *pdev)
ndev->base_addr = res->start;
ret = smc911x_probe(ndev);
if (ret != 0) {
platform_set_drvdata(pdev, NULL);
iounmap(addr);
release_both:
free_netdev(ndev);
Expand All @@ -2113,7 +2112,6 @@ static int smc911x_drv_remove(struct platform_device *pdev)
struct resource *res;

DBG(SMC_DEBUG_FUNC, "--> %s\n", __func__);
platform_set_drvdata(pdev, NULL);

unregister_netdev(ndev);

Expand Down
3 changes: 0 additions & 3 deletions drivers/net/ethernet/smsc/smc91x.c
Original file line number Diff line number Diff line change
Expand Up @@ -2299,7 +2299,6 @@ static int smc_drv_probe(struct platform_device *pdev)
return 0;

out_iounmap:
platform_set_drvdata(pdev, NULL);
iounmap(addr);
out_release_attrib:
smc_release_attrib(pdev, ndev);
Expand All @@ -2319,8 +2318,6 @@ static int smc_drv_remove(struct platform_device *pdev)
struct smc_local *lp = netdev_priv(ndev);
struct resource *res;

platform_set_drvdata(pdev, NULL);

unregister_netdev(ndev);

free_irq(ndev->irq, ndev);
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/smsc/smsc911x.c
Original file line number Diff line number Diff line change
Expand Up @@ -2284,7 +2284,6 @@ static int smsc911x_drv_remove(struct platform_device *pdev)
mdiobus_unregister(pdata->mii_bus);
mdiobus_free(pdata->mii_bus);

platform_set_drvdata(pdev, NULL);
unregister_netdev(dev);
free_irq(dev->irq, dev);
res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
Expand Down Expand Up @@ -2539,7 +2538,6 @@ static int smsc911x_drv_probe(struct platform_device *pdev)
out_enable_resources_fail:
smsc911x_free_resources(pdev);
out_request_resources_fail:
platform_set_drvdata(pdev, NULL);
iounmap(pdata->ioaddr);
free_netdev(dev);
out_release_io_1:
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,6 @@ static int stmmac_pltfr_remove(struct platform_device *pdev)
if (priv->plat->exit)
priv->plat->exit(pdev);

platform_set_drvdata(pdev, NULL);

return ret;
}

Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/ti/cpsw.c
Original file line number Diff line number Diff line change
Expand Up @@ -1940,7 +1940,6 @@ static int cpsw_remove(struct platform_device *pdev)
struct cpsw_priv *priv = netdev_priv(ndev);
int i;

platform_set_drvdata(pdev, NULL);
if (priv->data.dual_emac)
unregister_netdev(cpsw_get_slave_ndev(priv, 1));
unregister_netdev(ndev);
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/ti/davinci_emac.c
Original file line number Diff line number Diff line change
Expand Up @@ -2037,8 +2037,6 @@ static int davinci_emac_remove(struct platform_device *pdev)

dev_notice(&ndev->dev, "DaVinci EMAC: davinci_emac_remove()\n");

platform_set_drvdata(pdev, NULL);

if (priv->txchan)
cpdma_chan_destroy(priv->txchan);
if (priv->rxchan)
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/tundra/tsi108_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -1682,7 +1682,6 @@ static int tsi108_ether_remove(struct platform_device *pdev)

unregister_netdev(dev);
tsi108_stop_ethernet(dev);
platform_set_drvdata(pdev, NULL);
iounmap(priv->regs);
iounmap(priv->phyregs);
free_netdev(dev);
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/wiznet/w5100.c
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,6 @@ static int w5100_probe(struct platform_device *pdev)
unregister_netdev(ndev);
err_register:
free_netdev(ndev);
platform_set_drvdata(pdev, NULL);
return err;
}

Expand All @@ -750,7 +749,6 @@ static int w5100_remove(struct platform_device *pdev)

unregister_netdev(ndev);
free_netdev(ndev);
platform_set_drvdata(pdev, NULL);
return 0;
}

Expand Down
Loading

0 comments on commit dfd93c9

Please sign in to comment.