Commit e60bc2df authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Linus Walleij

pinctrl: use ERR_CAST instead of ERR_PTR(PTR_ERR(...))

This doesn't change semantics, just looks nicer.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 4cbe5a55
...@@ -140,7 +140,7 @@ static inline struct pinctrl * __must_check devm_pinctrl_get_select( ...@@ -140,7 +140,7 @@ static inline struct pinctrl * __must_check devm_pinctrl_get_select(
s = pinctrl_lookup_state(p, name); s = pinctrl_lookup_state(p, name);
if (IS_ERR(s)) { if (IS_ERR(s)) {
devm_pinctrl_put(p); devm_pinctrl_put(p);
return ERR_PTR(PTR_ERR(s)); return ERR_CAST(s);
} }
ret = pinctrl_select_state(p, s); ret = pinctrl_select_state(p, s);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment