Skip to content

Commit

Permalink
pinctrl: use ERR_CAST instead of ERR_PTR/PTR_ERR
Browse files Browse the repository at this point in the history
Inspired by scripts/coccinelle/api/err_cast.cocci

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Fabian Frederick authored and Linus Walleij committed May 6, 2015
1 parent 0b354dc commit 66eb3bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/pinctrl/consumer.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ static inline struct pinctrl * __must_check pinctrl_get_select(
s = pinctrl_lookup_state(p, name);
if (IS_ERR(s)) {
pinctrl_put(p);
return ERR_PTR(PTR_ERR(s));
return ERR_CAST(s);
}

ret = pinctrl_select_state(p, s);
Expand Down

0 comments on commit 66eb3bd

Please sign in to comment.