mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-01 09:13:37 +00:00
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>
This commit is contained in:
parent
91bb8d0bf2
commit
b042baa52b
1 changed files with 3 additions and 6 deletions
|
|
@ -1063,12 +1063,9 @@ static int madera_pin_probe(struct platform_device *pdev)
|
||||||
if (pdata->gpio_configs) {
|
if (pdata->gpio_configs) {
|
||||||
ret = pinctrl_register_mappings(pdata->gpio_configs,
|
ret = pinctrl_register_mappings(pdata->gpio_configs,
|
||||||
pdata->n_gpio_configs);
|
pdata->n_gpio_configs);
|
||||||
if (ret) {
|
if (ret)
|
||||||
dev_err(priv->dev,
|
return dev_err_probe(priv->dev, ret,
|
||||||
"Failed to register pdata mappings (%d)\n",
|
"Failed to register pdata mappings\n");
|
||||||
ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = pinctrl_enable(priv->pctl);
|
ret = pinctrl_enable(priv->pctl);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue