diff options
author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | 2016-03-09 03:23:38 (GMT) |
---|---|---|
committer | Jacek Anaszewski <j.anaszewski@samsung.com> | 2016-03-14 08:22:22 (GMT) |
commit | f165a66e16f0aa8270ec4a26fdb07606eb7d6ae3 (patch) | |
tree | 6314bce84a0846cc770b26a3b39eaf762793a3cc /arch/s390 | |
parent | 375446df95eee10c21ecc7fcb2295bd1ae1db8f7 (diff) | |
download | linux-f165a66e16f0aa8270ec4a26fdb07606eb7d6ae3.tar.xz |
leds: lp8788: Use devm_led_classdev_register
Switch to resource-managed function devm_led_classdev_register instead
of led_classdev_register and remove unneeded led_classdev_unregister.
Also, remove platform_set_drvdata in probe function and the remove
function, lp8788_led_remove as it is now has nothing to do.
The Coccinelle semantic patch used to make this change is as follows:
//<smpl>
@platform@
identifier p, probefn, removefn;
@@
struct platform_driver p = {
.probe = probefn,
.remove = removefn,
};
@prb@
identifier platform.probefn, pdev;
expression e;
@@
probefn(struct platform_device *pdev, ...) {
...
e =
- led_classdev_register
+ devm_led_classdev_register
(...);
...
?- led_classdev_unregister(...);
...
}
@remove depends on prb@
identifier platform.removefn;
@@
removefn(...) {
...
?- led_classdev_unregister(...);
...
}
//</smpl>
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com>
Diffstat (limited to 'arch/s390')
0 files changed, 0 insertions, 0 deletions