linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Yangtao Li <frank.li@vivo.com>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>,
	"Daniel Lezcano" <daniel.lezcano@linaro.org>,
	"Amit Kucheria" <amitk@kernel.org>,
	"Zhang Rui" <rui.zhang@intel.com>,
	"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 02/27] thermal/drivers/armada: Convert to platform remove callback returning void
Date: Wed, 12 Jul 2023 10:46:49 +0200	[thread overview]
Message-ID: <20230712104649.3d843fb3@xps-13> (raw)
In-Reply-To: <20230712081258.29254-2-frank.li@vivo.com>

Hi Yangtao,

frank.li@vivo.com wrote on Wed, 12 Jul 2023 16:12:33 +0800:

> The .remove() callback for a platform driver returns an int which makes
> many driver authors wrongly assume it's possible to do error handling by
> returning an error code. However the value returned is (mostly) ignored
> and this typically results in resource leaks. To improve here there is a
> quest to make the remove callback return void. In the first step of this
> quest all drivers are converted to .remove_new() which already returns
> void.
> 
> Trivially convert this driver from always returning zero in the remove
> callback to the void returning variant.
> 
> Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> Signed-off-by: Yangtao Li <frank.li@vivo.com>

Acked-by: Miquel Raynal <miquel.raynal@bootlin.com>

> ---
>  drivers/thermal/armada_thermal.c | 6 ++----
>  1 file changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c
> index 9f6dc4fc9112..94783e374d37 100644
> --- a/drivers/thermal/armada_thermal.c
> +++ b/drivers/thermal/armada_thermal.c
> @@ -964,19 +964,17 @@ static int armada_thermal_probe(struct platform_device *pdev)
>  	return 0;
>  }
>  
> -static int armada_thermal_exit(struct platform_device *pdev)
> +static void armada_thermal_exit(struct platform_device *pdev)
>  {
>  	struct armada_drvdata *drvdata = platform_get_drvdata(pdev);
>  
>  	if (drvdata->type == LEGACY)
>  		thermal_zone_device_unregister(drvdata->data.tz);
> -
> -	return 0;
>  }
>  
>  static struct platform_driver armada_thermal_driver = {
>  	.probe = armada_thermal_probe,
> -	.remove = armada_thermal_exit,
> +	.remove_new = armada_thermal_exit,
>  	.driver = {
>  		.name = "armada_thermal",
>  		.of_match_table = armada_thermal_id_table,


Thanks,
Miquèl

  reply	other threads:[~2023-07-12  8:47 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-12  8:12 [PATCH 01/27] thermal/drivers/amlogic: Convert to platform remove callback returning void Yangtao Li
2023-07-12  8:12 ` [PATCH 02/27] thermal/drivers/armada: " Yangtao Li
2023-07-12  8:46   ` Miquel Raynal [this message]
2023-07-12 12:44   ` Uwe Kleine-König
2023-07-12  8:12 ` [PATCH 03/27] thermal/drivers/broadcom: " Yangtao Li
2023-07-12 10:06   ` Uwe Kleine-König
2023-07-12 15:38   ` Florian Fainelli
2023-07-12  8:12 ` [PATCH 04/27] drivers/thermal/rcar_gen3_thermal: " Yangtao Li
2023-07-12 10:07   ` Uwe Kleine-König
2023-07-12 11:44   ` Geert Uytterhoeven
2023-07-12 13:22   ` Niklas Söderlund
2023-07-12  8:12 ` [PATCH 05/27] thermal/drivers/imx8mm_thermal: " Yangtao Li
2023-07-12  8:12 ` [PATCH 06/27] thermal/drivers/mediatek/lvts_thermal: " Yangtao Li
2023-07-12 10:14   ` Uwe Kleine-König
2023-07-12  8:12 ` [PATCH 07/27] thermal/drivers/qcom: " Yangtao Li
2023-07-12  8:12 ` [PATCH 08/27] thermal/drivers/hisi: " Yangtao Li
2023-07-12  8:12 ` [PATCH 09/27] thermal/drivers/spear: " Yangtao Li
2023-07-12  8:12 ` [PATCH 10/27] thermal/drivers/rockchip: " Yangtao Li
2023-07-12  8:12 ` [PATCH 11/27] thermal/drivers/uniphier: " Yangtao Li
2023-07-12  8:12 ` [PATCH 12/27] thermal/drivers/dove: " Yangtao Li
2023-07-12  8:12 ` [PATCH 13/27] thermal/drivers/k3_j72xx_bandgap: " Yangtao Li
2023-07-12  8:12 ` [PATCH 14/27] thermal/drivers/tegra-bpmp: " Yangtao Li
2023-07-12  8:12 ` [PATCH 15/27] thermal/drivers/imx: " Yangtao Li
2023-07-12  8:12 ` [PATCH 16/27] thermal/drivers/da9062: " Yangtao Li
2023-07-12  8:12 ` [PATCH 17/27] thermal/drivers/broadcom: " Yangtao Li
2023-07-12  8:12 ` [PATCH 18/27] thermal/drivers/rzg2l: " Yangtao Li
2023-07-12  8:12 ` [PATCH 19/27] drivers/thermal/k3: " Yangtao Li
2023-07-12  8:12 ` [PATCH 20/27] thermal/drivers/sprd: " Yangtao Li
2023-07-12  8:12 ` [PATCH 21/27] thermal/drivers/rcar_thermal: " Yangtao Li
2023-07-12 11:43   ` Geert Uytterhoeven
2023-07-12 12:49   ` Uwe Kleine-König
2023-07-12 13:23   ` Niklas Söderlund
2023-07-12  8:12 ` [PATCH 22/27] thermal/ti-soc-thermal: " Yangtao Li
2023-07-12  8:12 ` [PATCH 23/27] thermal/drivers/stm: " Yangtao Li
2023-07-12  8:12 ` [PATCH 24/27] thermal/drivers/tegra-soctherm: " Yangtao Li
2023-07-12  8:12 ` [PATCH 25/27] thermal/drivers/exynos: " Yangtao Li
2023-07-12  8:12 ` [PATCH 26/27] thermal/drivers/kirkwood: " Yangtao Li
2023-07-12  8:12 ` [PATCH 27/27] thermal: intel: int340x: " Yangtao Li
2023-07-14 19:01   ` Rafael J. Wysocki
2023-07-12 10:05 ` [PATCH 01/27] thermal/drivers/amlogic: " Uwe Kleine-König

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=20230712104649.3d843fb3@xps-13 \
    --to=miquel.raynal@bootlin.com \
    --cc=amitk@kernel.org \
    --cc=daniel.lezcano@linaro.org \
    --cc=frank.li@vivo.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=rafael@kernel.org \
    --cc=rui.zhang@intel.com \
    --cc=u.kleine-koenig@pengutronix.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).