summaryrefslogtreecommitdiffstats
path: root/drivers/leds/leds-wm831x-status.c
diff options
context:
space:
mode:
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>2016-03-09 08:53:38 +0530
committerJacek Anaszewski <j.anaszewski@samsung.com>2016-03-14 09:22:22 +0100
commitf165a66e16f0aa8270ec4a26fdb07606eb7d6ae3 (patch)
tree6314bce84a0846cc770b26a3b39eaf762793a3cc /drivers/leds/leds-wm831x-status.c
parent375446df95eee10c21ecc7fcb2295bd1ae1db8f7 (diff)
downloadop-kernel-dev-f165a66e16f0aa8270ec4a26fdb07606eb7d6ae3.zip
op-kernel-dev-f165a66e16f0aa8270ec4a26fdb07606eb7d6ae3.tar.gz
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 'drivers/leds/leds-wm831x-status.c')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud