Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283064
b: refs/heads/master
c: 1713cb9
h: refs/heads/master
v: v3
  • Loading branch information
Mark Brown authored and Linus Torvalds committed Jan 11, 2012
1 parent 47a1ab4 commit aa101a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3b080945aa7670354364c8f9e1a3a07cbb97beb3
refs/heads/master: 1713cb9d6069fac581fcea928f65ca6ca7c9facf
5 changes: 2 additions & 3 deletions trunk/drivers/leds/leds-wm831x-status.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ static int wm831x_status_probe(struct platform_device *pdev)
goto err;
}

drvdata = kzalloc(sizeof(struct wm831x_status), GFP_KERNEL);
drvdata = devm_kzalloc(&pdev->dev, sizeof(struct wm831x_status),
GFP_KERNEL);
if (!drvdata)
return -ENOMEM;
dev_set_drvdata(&pdev->dev, drvdata);
Expand Down Expand Up @@ -300,7 +301,6 @@ static int wm831x_status_probe(struct platform_device *pdev)

err_led:
led_classdev_unregister(&drvdata->cdev);
kfree(drvdata);
err:
return ret;
}
Expand All @@ -311,7 +311,6 @@ static int wm831x_status_remove(struct platform_device *pdev)

device_remove_file(drvdata->cdev.dev, &dev_attr_src);
led_classdev_unregister(&drvdata->cdev);
kfree(drvdata);

return 0;
}
Expand Down

0 comments on commit aa101a8

Please sign in to comment.