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 02/18] remoteproc: imx_dsp: Convert to platform remove callback returning void
Date: Fri, 5 May 2023 00:33:57 +0300 [thread overview]
Message-ID: <c081f0df-b47f-2969-e9d0-a10f09cc1201@nxp.com> (raw)
In-Reply-To: <20230504194453.1150368-3-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_dsp_rproc.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/remoteproc/imx_dsp_rproc.c b/drivers/remoteproc/imx_dsp_rproc.c
> index cab06dbf37fb..bda7f2a910e0 100644
> --- a/drivers/remoteproc/imx_dsp_rproc.c
> +++ b/drivers/remoteproc/imx_dsp_rproc.c
> @@ -1161,7 +1161,7 @@ static int imx_dsp_rproc_probe(struct platform_device *pdev)
> return ret;
> }
>
> -static int imx_dsp_rproc_remove(struct platform_device *pdev)
> +static void imx_dsp_rproc_remove(struct platform_device *pdev)
> {
> struct rproc *rproc = platform_get_drvdata(pdev);
> struct imx_dsp_rproc *priv = rproc->priv;
> @@ -1170,8 +1170,6 @@ static int imx_dsp_rproc_remove(struct platform_device *pdev)
> rproc_del(rproc);
> imx_dsp_detach_pm_domains(priv);
> rproc_free(rproc);
> -
> - return 0;
> }
>
> /* pm runtime functions */
> @@ -1328,7 +1326,7 @@ MODULE_DEVICE_TABLE(of, imx_dsp_rproc_of_match);
>
> static struct platform_driver imx_dsp_rproc_driver = {
> .probe = imx_dsp_rproc_probe,
> - .remove = imx_dsp_rproc_remove,
> + .remove_new = imx_dsp_rproc_remove,
> .driver = {
> .name = "imx-dsp-rproc",
> .of_match_table = imx_dsp_rproc_of_match,
next prev parent 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 [this message]
2023-05-04 19:44 ` [PATCH 03/18] remoteproc: imx: " Uwe Kleine-König
2023-05-04 21:34 ` Iuliana Prodan
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=c081f0df-b47f-2969-e9d0-a10f09cc1201@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