return ret;
}
-static int bcm6348_emac_remove(struct platform_device *pdev)
+static void bcm6348_emac_remove(struct platform_device *pdev)
{
struct net_device *ndev = platform_get_drvdata(pdev);
struct bcm6348_emac *emac = netdev_priv(ndev);
for (i = 0; i < emac->num_clocks; i++)
clk_disable_unprepare(emac->clock[i]);
-
- return 0;
}
static const struct of_device_id bcm6348_emac_of_match[] = {
.of_match_table = of_match_ptr(bcm6348_emac_of_match),
},
.probe = bcm6348_emac_probe,
- .remove = bcm6348_emac_remove,
+ .remove_new = bcm6348_emac_remove,
};
int bcm6348_iudma_drivers_register(struct platform_device *pdev)
return ret;
}
-static int bcm6368_enetsw_remove(struct platform_device *pdev)
+static void bcm6368_enetsw_remove(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
struct net_device *ndev = platform_get_drvdata(pdev);
for (i = 0; i < priv->num_clocks; i++)
clk_disable_unprepare(priv->clock[i]);
-
- return 0;
}
static const struct of_device_id bcm6368_enetsw_of_match[] = {
.of_match_table = of_match_ptr(bcm6368_enetsw_of_match),
},
.probe = bcm6368_enetsw_probe,
- .remove = bcm6368_enetsw_remove,
+ .remove_new = bcm6368_enetsw_remove,
};
module_platform_driver(bcm6368_enetsw_driver);