diff options
author | Yan Zhen <yanzhen@vivo.com> | 2024-08-29 07:48:35 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2024-09-02 11:28:53 +0300 |
commit | b042baa52b74181ad12a655f2ab1331ce7a1ebf7 (patch) | |
tree | 294fd193f9864e790866e55ba7ad5fa243f2814b | |
parent | 91bb8d0bf2fe69d0116d8f31c5c36b57ef3d8e20 (diff) | |
download | linux-b042baa52b74181ad12a655f2ab1331ce7a1ebf7.tar.xz |
pinctrl: madera: Simplify with dev_err_probe()
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>
Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/20240829044835.2047794-1-yanzhen@vivo.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/pinctrl/cirrus/pinctrl-madera-core.c | 9 |
1 files 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); |