mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-23 14:11:31 -05:00
net: ibm: emac: use devm for mutex_init
It seems since inception that mutex_destroy was never called for these in _remove. Instead of handling this manually, just use devm for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com> Reviewed-by: Shannon Nelson <shannon.nelson@amd.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
@@ -3021,8 +3021,14 @@ static int emac_probe(struct platform_device *ofdev)
|
||||
SET_NETDEV_DEV(ndev, &ofdev->dev);
|
||||
|
||||
/* Initialize some embedded data structures */
|
||||
mutex_init(&dev->mdio_lock);
|
||||
mutex_init(&dev->link_lock);
|
||||
err = devm_mutex_init(&ofdev->dev, &dev->mdio_lock);
|
||||
if (err)
|
||||
goto err_gone;
|
||||
|
||||
err = devm_mutex_init(&ofdev->dev, &dev->link_lock);
|
||||
if (err)
|
||||
goto err_gone;
|
||||
|
||||
spin_lock_init(&dev->lock);
|
||||
INIT_WORK(&dev->reset_work, emac_reset_work);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user