mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 12:35:52 +02:00
net: ibm: emac: rgmii: 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-6-rosenp@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
070239c07a
commit
01902fe2bd
|
|
@ -219,13 +219,17 @@ static int rgmii_probe(struct platform_device *ofdev)
|
||||||
struct device_node *np = ofdev->dev.of_node;
|
struct device_node *np = ofdev->dev.of_node;
|
||||||
struct rgmii_instance *dev;
|
struct rgmii_instance *dev;
|
||||||
struct resource regs;
|
struct resource regs;
|
||||||
|
int err;
|
||||||
|
|
||||||
dev = devm_kzalloc(&ofdev->dev, sizeof(struct rgmii_instance),
|
dev = devm_kzalloc(&ofdev->dev, sizeof(struct rgmii_instance),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!dev)
|
if (!dev)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
mutex_init(&dev->lock);
|
err = devm_mutex_init(&ofdev->dev, &dev->lock);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
|
||||||
dev->ofdev = ofdev;
|
dev->ofdev = ofdev;
|
||||||
|
|
||||||
if (of_address_to_resource(np, 0, ®s)) {
|
if (of_address_to_resource(np, 0, ®s)) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user