mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 14:40:12 -04:00
net: ibm: emac: zmii: use devm for mutex_init
It seems that since inception, this driver never called mutex_destroy in _remove. Use devm to handle this automatically. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://patch.msgid.link/20241030203727.6039-9-rosenp@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
e2da0216e5
commit
3fb5272de0
@@ -235,13 +235,17 @@ static int zmii_probe(struct platform_device *ofdev)
|
||||
struct device_node *np = ofdev->dev.of_node;
|
||||
struct zmii_instance *dev;
|
||||
struct resource regs;
|
||||
int err;
|
||||
|
||||
dev = devm_kzalloc(&ofdev->dev, sizeof(struct zmii_instance),
|
||||
GFP_KERNEL);
|
||||
if (!dev)
|
||||
return -ENOMEM;
|
||||
|
||||
mutex_init(&dev->lock);
|
||||
err = devm_mutex_init(&ofdev->dev, &dev->lock);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
dev->ofdev = ofdev;
|
||||
dev->mode = PHY_INTERFACE_MODE_NA;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user