Commit 1713cb9d authored by Mark Brown's avatar Mark Brown Committed by Linus Torvalds

leds: convert wm831x status driver to devm_kzalloc()

Saves a small amount of code and systematically eliminates leaks.
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3b080945
...@@ -237,7 +237,8 @@ static int wm831x_status_probe(struct platform_device *pdev) ...@@ -237,7 +237,8 @@ static int wm831x_status_probe(struct platform_device *pdev)
goto err; goto err;
} }
drvdata = kzalloc(sizeof(struct wm831x_status), GFP_KERNEL); drvdata = devm_kzalloc(&pdev->dev, sizeof(struct wm831x_status),
GFP_KERNEL);
if (!drvdata) if (!drvdata)
return -ENOMEM; return -ENOMEM;
dev_set_drvdata(&pdev->dev, drvdata); dev_set_drvdata(&pdev->dev, drvdata);
...@@ -300,7 +301,6 @@ static int wm831x_status_probe(struct platform_device *pdev) ...@@ -300,7 +301,6 @@ static int wm831x_status_probe(struct platform_device *pdev)
err_led: err_led:
led_classdev_unregister(&drvdata->cdev); led_classdev_unregister(&drvdata->cdev);
kfree(drvdata);
err: err:
return ret; return ret;
} }
...@@ -311,7 +311,6 @@ static int wm831x_status_remove(struct platform_device *pdev) ...@@ -311,7 +311,6 @@ static int wm831x_status_remove(struct platform_device *pdev)
device_remove_file(drvdata->cdev.dev, &dev_attr_src); device_remove_file(drvdata->cdev.dev, &dev_attr_src);
led_classdev_unregister(&drvdata->cdev); led_classdev_unregister(&drvdata->cdev);
kfree(drvdata);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment