Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 18442e65 authored by Wei Yongjun's avatar Wei Yongjun Committed by Linus Walleij
Browse files

pinctrl: single: fix error return code in pcs_parse_one_pinctrl_entry()



Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Introduced by commit 9dddb4df
(pinctrl: single: support generic pinconf)

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarHaojian Zhuang <haojian.zhuang@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 63ad9cbf
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1166,7 +1166,8 @@ static int pcs_parse_one_pinctrl_entry(struct pcs_device *pcs,
	(*map)->data.mux.function = np->name;

	if (pcs->is_pinconf) {
		if (pcs_parse_pinconf(pcs, np, function, map))
		res = pcs_parse_pinconf(pcs, np, function, map);
		if (res)
			goto free_pingroups;
		*num_maps = 2;
	} else {