Linux Remote Processor Subsystem development
 help / color / mirror / Atom feed
From: Iuliana Prodan <iuliana.prodan@nxp.com>
To: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
	"Bjorn Andersson" <andersson@kernel.org>,
	"Mathieu Poirier" <mathieu.poirier@linaro.org>,
	"Shawn Guo" <shawnguo@kernel.org>,
	"Sascha Hauer" <s.hauer@pengutronix.de>
Cc: Pengutronix Kernel Team <kernel@pengutronix.de>,
	Fabio Estevam <festevam@gmail.com>,
	NXP Linux Team <linux-imx@nxp.com>,
	linux-remoteproc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 03/18] remoteproc: imx: Convert to platform remove callback returning void
Date: Fri, 5 May 2023 00:34:22 +0300	[thread overview]
Message-ID: <4ecf69b8-741f-a2f6-5ce0-bb0fe467c090@nxp.com> (raw)
In-Reply-To: <20230504194453.1150368-4-u.kleine-koenig@pengutronix.de>

On 5/4/2023 10:44 PM, Uwe Kleine-König wrote:
> 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.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Reviewed-by: Iuliana Prodan <iuliana.prodan@nxp.com>


> ---
>   drivers/remoteproc/imx_rproc.c | 6 ++----
>   1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/remoteproc/imx_rproc.c b/drivers/remoteproc/imx_rproc.c
> index 0ab840dc7e97..f9874fc5a80f 100644
> --- a/drivers/remoteproc/imx_rproc.c
> +++ b/drivers/remoteproc/imx_rproc.c
> @@ -1112,7 +1112,7 @@ static int imx_rproc_probe(struct platform_device *pdev)
>   	return ret;
>   }
>   
> -static int imx_rproc_remove(struct platform_device *pdev)
> +static void imx_rproc_remove(struct platform_device *pdev)
>   {
>   	struct rproc *rproc = platform_get_drvdata(pdev);
>   	struct imx_rproc *priv = rproc->priv;
> @@ -1123,8 +1123,6 @@ static int imx_rproc_remove(struct platform_device *pdev)
>   	imx_rproc_free_mbox(rproc);
>   	destroy_workqueue(priv->workqueue);
>   	rproc_free(rproc);
> -
> -	return 0;
>   }
>   
>   static const struct of_device_id imx_rproc_of_match[] = {
> @@ -1145,7 +1143,7 @@ MODULE_DEVICE_TABLE(of, imx_rproc_of_match);
>   
>   static struct platform_driver imx_rproc_driver = {
>   	.probe = imx_rproc_probe,
> -	.remove = imx_rproc_remove,
> +	.remove_new = imx_rproc_remove,
>   	.driver = {
>   		.name = "imx-rproc",
>   		.of_match_table = imx_rproc_of_match,

  reply	other threads:[~2023-05-04 21:34 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-04 19:44 [PATCH 00/18] remoteproc: Convert to platform remove callback returning void Uwe Kleine-König
2023-05-04 19:44 ` [PATCH 01/18] remoteproc: da8xx: " Uwe Kleine-König
2023-05-04 19:44 ` [PATCH 02/18] remoteproc: imx_dsp: " Uwe Kleine-König
2023-05-04 21:33   ` Iuliana Prodan
2023-05-04 19:44 ` [PATCH 03/18] remoteproc: imx: " Uwe Kleine-König
2023-05-04 21:34   ` Iuliana Prodan [this message]
2023-05-04 19:44 ` [PATCH 04/18] remoteproc: keystone: " Uwe Kleine-König
2023-05-04 19:44 ` [PATCH 05/18] remoteproc: meson_mx_ao_arc: " Uwe Kleine-König
2023-05-08 19:39   ` Martin Blumenstingl
2023-05-04 19:44 ` [PATCH 06/18] remoteproc: mtk_scp: " Uwe Kleine-König
2023-05-05  8:58   ` AngeloGioacchino Del Regno
2023-05-05 17:13   ` Matthias Brugger
2023-05-04 19:44 ` [PATCH 07/18] remoteproc: omap: " Uwe Kleine-König
2023-05-04 19:44 ` [PATCH 08/18] remoteproc: pru: " Uwe Kleine-König
2023-05-04 19:44 ` [PATCH 09/18] remoteproc: qcom_q6v5_adsp: " Uwe Kleine-König
2023-05-05  3:00   ` Caleb Connolly
2023-05-04 19:44 ` [PATCH 10/18] remoteproc: qcom_q6v5_mss: " Uwe Kleine-König
2023-05-05  3:00   ` Caleb Connolly
2023-05-04 19:44 ` [PATCH 11/18] remoteproc: qcom_q6v5_pas: " Uwe Kleine-König
2023-05-05  3:01   ` Caleb Connolly
2023-05-04 19:44 ` [PATCH 12/18] remoteproc: qcom_q6v5_wcss: " Uwe Kleine-König
2023-05-05  3:01   ` Caleb Connolly
2023-05-04 19:44 ` [PATCH 13/18] remoteproc: qcom_wcnss: " Uwe Kleine-König
2023-05-05  3:01   ` Caleb Connolly
2023-05-04 19:44 ` [PATCH 14/18] remoteproc: rcar: " Uwe Kleine-König
2023-05-04 19:44 ` [PATCH 15/18] remoteproc: virtio: " Uwe Kleine-König
2023-05-04 19:44 ` [PATCH 16/18] remoteproc: st: " Uwe Kleine-König
2023-05-09  6:28   ` Patrice CHOTARD
2023-05-04 19:44 ` [PATCH 17/18] remoteproc: stm32: " Uwe Kleine-König
2023-05-09 17:11   ` Arnaud POULIQUEN
2023-05-04 19:44 ` [PATCH 18/18] remoteproc: wkup_m3: " Uwe Kleine-König
2023-05-09 20:09 ` [PATCH 00/18] remoteproc: " Mathieu Poirier

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=4ecf69b8-741f-a2f6-5ce0-bb0fe467c090@nxp.com \
    --to=iuliana.prodan@nxp.com \
    --cc=andersson@kernel.org \
    --cc=festevam@gmail.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-remoteproc@vger.kernel.org \
    --cc=mathieu.poirier@linaro.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    --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