Skip to content

Commit

Permalink
hwmon: (mc13783-adc.c) Convert to use devm_ functions
Browse files Browse the repository at this point in the history
Convert to use devm_ functions to reduce code size and simplify the code.

Cc: Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
  • Loading branch information
Guenter Roeck committed Jul 22, 2012
1 parent b07405f commit ed2e073
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions drivers/hwmon/mc13783-adc.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ static int __init mc13783_adc_probe(struct platform_device *pdev)
const struct platform_device_id *id = platform_get_device_id(pdev);
char *dash;

priv = kzalloc(sizeof(*priv), GFP_KERNEL);
priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
if (!priv)
return -ENOMEM;

Expand All @@ -194,7 +194,7 @@ static int __init mc13783_adc_probe(struct platform_device *pdev)
/* Register sysfs hooks */
ret = sysfs_create_group(&pdev->dev.kobj, &mc13783_group_base);
if (ret)
goto out_err_create_base;
return ret;

if (id->driver_data & MC13783_ADC_16CHANS) {
ret = sysfs_create_group(&pdev->dev.kobj,
Expand Down Expand Up @@ -230,11 +230,6 @@ static int __init mc13783_adc_probe(struct platform_device *pdev)
out_err_create_16chans:

sysfs_remove_group(&pdev->dev.kobj, &mc13783_group_base);
out_err_create_base:

platform_set_drvdata(pdev, NULL);
kfree(priv);

return ret;
}

Expand All @@ -253,9 +248,6 @@ static int __devexit mc13783_adc_remove(struct platform_device *pdev)

sysfs_remove_group(&pdev->dev.kobj, &mc13783_group_base);

platform_set_drvdata(pdev, NULL);
kfree(priv);

return 0;
}

Expand Down

0 comments on commit ed2e073

Please sign in to comment.