public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/6] leds: Use devm_led_classdev_register
@ 2016-03-09  3:23 Amitoj Kaur Chawla
  2016-03-09  3:23 ` [PATCH v2 1/6] leds: 88pm860x: " Amitoj Kaur Chawla
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Amitoj Kaur Chawla @ 2016-03-09  3:23 UTC (permalink / raw)
  To: rpurdie, j.anaszewski, linux-leds, linux-kernel; +Cc: julia.lawall

Switch to resource-managed function devm_led_classdev_register instead
of led_classdev_register and remove unneeded led_classdev_unregister.

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>

Amitoj Kaur Chawla (6):
  leds: 88pm860x: Use devm_led_classdev_register
  leds: lp8788: Use devm_led_classdev_register
  leds: wm831x-status: Use devm_led_classdev_register
  leds: s3c24xx: Use devm_led_classdev_register
  leds: da903x: Use devm_led_classdev_register
  leds: max8997: Use devm_led_classdev_register

Changes in v2:
        -Patches 1-6: Remove unnecessary platform_set_drvdata
        -Patch 4: Remove unnecessary pdev_to_gpio function definition

 drivers/leds/leds-88pm860x.c      | 12 +-----------
 drivers/leds/leds-da903x.c        | 12 +-----------
 drivers/leds/leds-lp8788.c        | 14 +-------------
 drivers/leds/leds-max8997.c       | 14 +-------------
 drivers/leds/leds-s3c24xx.c       | 19 +------------------
 drivers/leds/leds-wm831x-status.c | 13 +------------
 6 files changed, 6 insertions(+), 78 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-03-09 15:23 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-09  3:23 [PATCH v2 0/6] leds: Use devm_led_classdev_register Amitoj Kaur Chawla
2016-03-09  3:23 ` [PATCH v2 1/6] leds: 88pm860x: " Amitoj Kaur Chawla
2016-03-09  3:23 ` [PATCH v2 2/6] leds: lp8788: " Amitoj Kaur Chawla
2016-03-09  3:23 ` [PATCH v2 3/6] leds: wm831x-status: " Amitoj Kaur Chawla
2016-03-09  3:23 ` [PATCH v2 4/6] leds: s3c24xx: " Amitoj Kaur Chawla
2016-03-09  3:24 ` [PATCH v2 5/6] leds: da903x: " Amitoj Kaur Chawla
2016-03-09  3:24 ` [PATCH v2 6/6] leds: max8997: " Amitoj Kaur Chawla
2016-03-09 15:23 ` [PATCH v2 0/6] leds: " Jacek Anaszewski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox