Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1252505
| From | Jacek Anaszewski <j.anaszewski@samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] leds: leds-netxbig.c: Use devm_led_classdev_register |
| Date | 2015-10-21 09:10 +0200 |
| Message-ID | <qlVH4-45L-5@gated-at.bofh.it> (permalink) |
| References | <qlLom-5IJ-29@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi Fida,
On 10/20/2015 10:06 PM, Fida Mohammad wrote:
> Use resource managed function devm_led_classdev_register to make
> error path simpler. Consequently, removed a goto call and
> remove function made simpler.
>
> Signed-off-by: Fida Mohammad <fmthoker@gmail.com>
> ---
> drivers/leds/leds-netxbig.c | 25 +++++--------------------
> 1 file changed, 5 insertions(+), 20 deletions(-)
>
> diff --git a/drivers/leds/leds-netxbig.c b/drivers/leds/leds-netxbig.c
> index 25e4197..639f8bd 100644
> --- a/drivers/leds/leds-netxbig.c
> +++ b/drivers/leds/leds-netxbig.c
> @@ -299,10 +299,6 @@ static struct attribute *netxbig_led_attrs[] = {
> };
> ATTRIBUTE_GROUPS(netxbig_led);
>
> -static void delete_netxbig_led(struct netxbig_led_data *led_dat)
> -{
> - led_classdev_unregister(&led_dat->cdev);
> -}
>
> static int
> create_netxbig_led(struct platform_device *pdev,
> @@ -343,7 +339,7 @@ create_netxbig_led(struct platform_device *pdev,
> if (led_dat->mode_val[NETXBIG_LED_SATA] != NETXBIG_LED_INVALID_MODE)
> led_dat->cdev.groups = netxbig_led_groups;
>
> - return led_classdev_register(&pdev->dev, &led_dat->cdev);
> + return devm_led_classdev_register(&pdev->dev, &led_dat->cdev);
> }
>
> static int netxbig_led_probe(struct platform_device *pdev)
> @@ -367,32 +363,21 @@ static int netxbig_led_probe(struct platform_device *pdev)
>
> for (i = 0; i < pdata->num_leds; i++) {
> ret = create_netxbig_led(pdev, &leds_data[i], &pdata->leds[i]);
> - if (ret < 0)
> - goto err_free_leds;
> + if (ret < 0) {
> + gpio_ext_free(pdata->gpio_ext);
> + return ret;
> + }
> }
>
> platform_set_drvdata(pdev, leds_data);
>
> return 0;
>
> -err_free_leds:
> - for (i = i - 1; i >= 0; i--)
> - delete_netxbig_led(&leds_data[i]);
> -
> - gpio_ext_free(pdata->gpio_ext);
> - return ret;
> }
>
> static int netxbig_led_remove(struct platform_device *pdev)
> {
> struct netxbig_led_platform_data *pdata = dev_get_platdata(&pdev->dev);
> - struct netxbig_led_data *leds_data;
> - int i;
> -
> - leds_data = platform_get_drvdata(pdev);
> -
> - for (i = 0; i < pdata->num_leds; i++)
> - delete_netxbig_led(&leds_data[i]);
>
> gpio_ext_free(pdata->gpio_ext);
>
>
Thanks for the patch.
Always when submitting patches please cc also the author.
I know that this is a simple optimization, but nevertheless
an ack from the author, who can test the patch on the hardware,
is valuable. Cc Simon.
--
Best Regards,
Jacek Anaszewski
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] leds: leds-netxbig.c: Use devm_led_classdev_register Fida Mohammad <fmthoker@gmail.com> - 2015-10-20 22:10 +0200
Re: [PATCH] leds: leds-netxbig.c: Use devm_led_classdev_register Jacek Anaszewski <j.anaszewski@samsung.com> - 2015-10-21 09:10 +0200
Re: [PATCH] leds: leds-netxbig.c: Use devm_led_classdev_register Simon Guinot <simon.guinot@sequanux.org> - 2015-10-21 10:00 +0200
Re: [PATCH] leds: leds-netxbig.c: Use devm_led_classdev_register Jacek Anaszewski <j.anaszewski@samsung.com> - 2015-10-21 10:30 +0200
csiph-web