* [PATCH v3] pinctrl: madera: Simplify with dev_err_probe()
@ 2024-08-30 8:43 Yan Zhen
2024-08-30 17:57 ` Krzysztof Kozlowski
0 siblings, 1 reply; 2+ messages in thread
From: Yan Zhen @ 2024-08-30 8:43 UTC (permalink / raw)
To: ckeepax, rf, linus.walleij
Cc: linux-sound, patches, linux-kernel, opensorce.kernel, Yan Zhen
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@vivo.com>
---
Changes in v3:
-Rewrite the subject as 'pinctrl: madera:'.
drivers/pinctrl/cirrus/pinctrl-madera-core.c | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/drivers/pinctrl/cirrus/pinctrl-madera-core.c b/drivers/pinctrl/cirrus/pinctrl-madera-core.c
index 898b197c3738..2932d7aba725 100644
--- a/drivers/pinctrl/cirrus/pinctrl-madera-core.c
+++ b/drivers/pinctrl/cirrus/pinctrl-madera-core.c
@@ -1063,12 +1063,9 @@ static int madera_pin_probe(struct platform_device *pdev)
if (pdata->gpio_configs) {
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;
- }
+ if (ret)
+ return dev_err_probe(priv->dev, ret,
+ "Failed to register pdata mappings\n");
}
ret = pinctrl_enable(priv->pctl);
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH v3] pinctrl: madera: Simplify with dev_err_probe()
2024-08-30 8:43 [PATCH v3] pinctrl: madera: Simplify with dev_err_probe() Yan Zhen
@ 2024-08-30 17:57 ` Krzysztof Kozlowski
0 siblings, 0 replies; 2+ messages in thread
From: Krzysztof Kozlowski @ 2024-08-30 17:57 UTC (permalink / raw)
To: Yan Zhen, ckeepax, rf, linus.walleij
Cc: linux-sound, patches, linux-kernel, opensorce.kernel
On 30/08/2024 10:43, Yan Zhen wrote:
>
> diff --git a/drivers/pinctrl/cirrus/pinctrl-madera-core.c b/drivers/pinctrl/cirrus/pinctrl-madera-core.c
> index 898b197c3738..2932d7aba725 100644
> --- a/drivers/pinctrl/cirrus/pinctrl-madera-core.c
> +++ b/drivers/pinctrl/cirrus/pinctrl-madera-core.c
> @@ -1063,12 +1063,9 @@ static int madera_pin_probe(struct platform_device *pdev)
> if (pdata->gpio_configs) {
> 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;
> - }
> + if (ret)
> + return dev_err_probe(priv->dev, ret,
> + "Failed to register pdata mappings\n");
Another example, one of many from @vivo.com, where you touch one line
and leave everything else not modified.
Are you going to send 5 different patches - one per each line? You
generate tremendous amount of work for reviewers, just to ramp up your
stats in company.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-08-30 17:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-30 8:43 [PATCH v3] pinctrl: madera: Simplify with dev_err_probe() Yan Zhen
2024-08-30 17:57 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox