[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Zs8XlyXw421hHjM/@opensource.cirrus.com>
Date: Wed, 28 Aug 2024 13:27:03 +0100
From: Charles Keepax <ckeepax@...nsource.cirrus.com>
To: Yan Zhen <yanzhen@...o.com>
CC: <rf@...nsource.cirrus.com>, <tglx@...utronix.de>,
<linus.walleij@...aro.org>, <linux-sound@...r.kernel.org>,
<patches@...nsource.cirrus.com>, <linux-kernel@...r.kernel.org>,
<linux-gpio@...r.kernel.org>, <opensource.kernel@...o.com>
Subject: Re: [PATCH v1] cirrus: Simplify with dev_err_probe()
On Wed, Aug 28, 2024 at 08:01:18PM +0800, Yan Zhen wrote:
> Switch to use dev_err_probe() to simplify the error path and
> unify a message template.
>
> Using this helper is totally fine even if err is known to never
> be -EPROBE_DEFER.
>
> The benefit compared to a normal dev_err() is the standardized format
> of the error code, it being emitted symbolically and the fact that
> the error code is returned which allows more compact error paths.
>
> Signed-off-by: Yan Zhen <yanzhen@...o.com>
> ---
> drivers/irqchip/irq-madera.c | 5 ++---
> drivers/pinctrl/cirrus/pinctrl-madera-core.c | 7 +++----
> 2 files changed, 5 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/irqchip/irq-madera.c b/drivers/irqchip/irq-madera.c
> index acceb6e7fa95..68ebe09baaf6 100644
> --- a/drivers/irqchip/irq-madera.c
> +++ b/drivers/irqchip/irq-madera.c
> @@ -199,9 +199,8 @@ static int madera_irq_probe(struct platform_device *pdev)
> ret = regmap_update_bits(madera->regmap, MADERA_IRQ1_CTRL,
> MADERA_IRQ_POL_MASK, 0);
> if (ret) {
> - dev_err(&pdev->dev,
> - "Failed to set IRQ polarity: %d\n", ret);
> - return ret;
> + return dev_err_probe(&pdev->dev, ret,
> + "Failed to set IRQ polarity: %d\n", ret);
> }
> }
>
> diff --git a/drivers/pinctrl/cirrus/pinctrl-madera-core.c b/drivers/pinctrl/cirrus/pinctrl-madera-core.c
> index 898b197c3738..532fa8ac9a94 100644
> --- a/drivers/pinctrl/cirrus/pinctrl-madera-core.c
> +++ b/drivers/pinctrl/cirrus/pinctrl-madera-core.c
> @@ -1064,10 +1064,9 @@ static int madera_pin_probe(struct platform_device *pdev)
> ret = pinctrl_register_mappings(pdata->gpio_configs,
> pdata->n_gpio_configs);
> if (ret) {
> - dev_err(priv->dev,
> - "Failed to register pdata mappings (%d)\n",
> - ret);
> - return ret;
> + return dev_err_probe(priv->dev, ret,
> + "Failed to register pdata mappings (%d)\n",
> + ret);
> }
Since we are doing a respin anyway also the brackets on the if
should be dropped on both of these as well.
Thanks,
Charles
Powered by blists - more mailing lists