[PATCH 1/3] pmdomain: imx93-pd: replace dev_err() with dev_err_probe()
Christophe JAILLET
christophe.jaillet at wanadoo.fr
Sun Aug 25 06:40:20 PDT 2024
Le 25/08/2024 à 14:36, Dario Binacchi a écrit :
> This way, the code becomes more compact, and dev_err_probe() is used in
> every error path of the probe() function.
>
> Signed-off-by: Dario Binacchi <dario.binacchi at amarulasolutions.com>
> ---
>
> drivers/pmdomain/imx/imx93-pd.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/pmdomain/imx/imx93-pd.c b/drivers/pmdomain/imx/imx93-pd.c
> index d750a7dc58d2..afc482ec563f 100644
> --- a/drivers/pmdomain/imx/imx93-pd.c
> +++ b/drivers/pmdomain/imx/imx93-pd.c
> @@ -126,9 +126,9 @@ static int imx93_pd_probe(struct platform_device *pdev)
> if (!domain->init_off) {
> ret = clk_bulk_prepare_enable(domain->num_clks, domain->clks);
> if (ret) {
> - dev_err(domain->dev, "failed to enable clocks for domain: %s\n",
> - domain->genpd.name);
> - return ret;
> + return dev_err_probe(domain->dev, ret,
> + "failed to enable clocks for domain: %s\n",
> + domain->genpd.name);
> }
Hi,
you can now also remove the extra { } to be even more compact.
CJ
> }
>
More information about the linux-arm-kernel
mailing list