All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jacek Anaszewski <j.anaszewski@samsung.com>
To: Fida Mohammad <fmthoker@gmail.com>
Cc: Bryan Wu <cooloney@gmail.com>, Richard Purdie <rpurdie@rpsys.net>,
	linux-leds@vger.kernel.org, LKML <linux-kernel@vger.kernel.org>,
	Muhammad Falak <falakreyaz@gmail.com>,
	Kristian Kielhofner <kris@krisk.org>
Subject: Re: [PATCH] leds: leds-wrap.c: Use devm_led_classdev_register
Date: Thu, 22 Oct 2015 09:15:31 +0200	[thread overview]
Message-ID: <56288D13.3070108@samsung.com> (raw)
In-Reply-To: <1445425115-5415-1-git-send-email-fmthoker@gmail.com>

Hi Fida,

On 10/21/2015 12:58 PM, Fida Mohammad wrote:
> Use of resource managed function devm_led_classdev_register to
> make initialization path simpler. Also removed redundant remove
> function.
>
> Signed-off-by: Fida Mohammad <fmthoker@gmail.com>
> ---
>   drivers/leds/leds-wrap.c | 26 ++++----------------------
>   1 file changed, 4 insertions(+), 22 deletions(-)
>
> diff --git a/drivers/leds/leds-wrap.c b/drivers/leds/leds-wrap.c
> index 1ba3def..c5ff4b4 100644
> --- a/drivers/leds/leds-wrap.c
> +++ b/drivers/leds/leds-wrap.c
> @@ -76,39 +76,21 @@ static int wrap_led_probe(struct platform_device *pdev)
>   {
>   	int ret;
>
> -	ret = led_classdev_register(&pdev->dev, &wrap_power_led);
> +	ret = devm_led_classdev_register(&pdev->dev, &wrap_power_led);
>   	if (ret < 0)
>   		return ret;
>
> -	ret = led_classdev_register(&pdev->dev, &wrap_error_led);
> +	ret = devm_led_classdev_register(&pdev->dev, &wrap_error_led);
>   	if (ret < 0)
> -		goto err1;
> -
> -	ret = led_classdev_register(&pdev->dev, &wrap_extra_led);
> -	if (ret < 0)
> -		goto err2;
> -
> -	return ret;
> +		return ret;
>
> -err2:
> -	led_classdev_unregister(&wrap_error_led);
> -err1:
> -	led_classdev_unregister(&wrap_power_led);
> +	return  devm_led_classdev_register(&pdev->dev, &wrap_extra_led);
>

Removed two extra empty lines end applied, thanks.

> -	return ret;
>   }
>
> -static int wrap_led_remove(struct platform_device *pdev)
> -{
> -	led_classdev_unregister(&wrap_power_led);
> -	led_classdev_unregister(&wrap_error_led);
> -	led_classdev_unregister(&wrap_extra_led);
> -	return 0;
> -}
>
>   static struct platform_driver wrap_led_driver = {
>   	.probe		= wrap_led_probe,
> -	.remove		= wrap_led_remove,
>   	.driver		= {
>   		.name		= DRVNAME,
>   	},
>


-- 
Best Regards,
Jacek Anaszewski

      reply	other threads:[~2015-10-22  7:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-21 10:58 [PATCH] leds: leds-wrap.c: Use devm_led_classdev_register Fida Mohammad
2015-10-22  7:15 ` Jacek Anaszewski [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=56288D13.3070108@samsung.com \
    --to=j.anaszewski@samsung.com \
    --cc=cooloney@gmail.com \
    --cc=falakreyaz@gmail.com \
    --cc=fmthoker@gmail.com \
    --cc=kris@krisk.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-leds@vger.kernel.org \
    --cc=rpurdie@rpsys.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.