summaryrefslogtreecommitdiff
path: root/arch/s390/pci/pci_sysfs.c
diff options
context:
space:
mode:
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>2016-03-09 03:23:38 (GMT)
committerJacek Anaszewski <j.anaszewski@samsung.com>2016-03-14 08:22:22 (GMT)
commitf165a66e16f0aa8270ec4a26fdb07606eb7d6ae3 (patch)
tree6314bce84a0846cc770b26a3b39eaf762793a3cc /arch/s390/pci/pci_sysfs.c
parent375446df95eee10c21ecc7fcb2295bd1ae1db8f7 (diff)
downloadlinux-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/pci/pci_sysfs.c')
0 files changed, 0 insertions, 0 deletions