All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sebastian Reichel <sebastian.reichel@collabora.com>
To: Yuan Can <yuancan@huawei.com>
Cc: linus.walleij@linaro.org, linux-pm@vger.kernel.org
Subject: Re: [PATCH] power: supply: ab8500: Fix error handling in ab8500_charger_init()
Date: Sat, 26 Nov 2022 23:57:23 +0100	[thread overview]
Message-ID: <20221126225723.3eghvrwr7gtpvcj2@mercury.elektranox.org> (raw)
In-Reply-To: <20221124031932.17032-1-yuancan@huawei.com>

[-- Attachment #1: Type: text/plain, Size: 1395 bytes --]

Hi,

On Thu, Nov 24, 2022 at 03:19:32AM +0000, Yuan Can wrote:
> The ab8500_charger_init() returns the platform_driver_register() directly
> without checking its return value, if platform_driver_register() failed,
> all ab8500_charger_component_drivers are not unregistered.
> 
> Fix by unregister ab8500_charger_component_drivers when
> platform_driver_register() failed.
> 
> Fixes: 1c1f13a006ed ("power: supply: ab8500: Move to componentized binding")
> Signed-off-by: Yuan Can <yuancan@huawei.com>
> ---

Thanks, queued.

-- Sebastian

>  drivers/power/supply/ab8500_charger.c | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/power/supply/ab8500_charger.c b/drivers/power/supply/ab8500_charger.c
> index c19c50442761..58757a5799f8 100644
> --- a/drivers/power/supply/ab8500_charger.c
> +++ b/drivers/power/supply/ab8500_charger.c
> @@ -3719,7 +3719,14 @@ static int __init ab8500_charger_init(void)
>  	if (ret)
>  		return ret;
>  
> -	return platform_driver_register(&ab8500_charger_driver);
> +	ret = platform_driver_register(&ab8500_charger_driver);
> +	if (ret) {
> +		platform_unregister_drivers(ab8500_charger_component_drivers,
> +				ARRAY_SIZE(ab8500_charger_component_drivers));
> +		return ret;
> +	}
> +
> +	return 0;
>  }
>  
>  static void __exit ab8500_charger_exit(void)
> -- 
> 2.17.1
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      reply	other threads:[~2022-11-26 22:57 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-24  3:19 [PATCH] power: supply: ab8500: Fix error handling in ab8500_charger_init() Yuan Can
2022-11-26 22:57 ` Sebastian Reichel [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=20221126225723.3eghvrwr7gtpvcj2@mercury.elektranox.org \
    --to=sebastian.reichel@collabora.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=yuancan@huawei.com \
    /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.