Commit c1542be1 authored by Siarhei Volkau's avatar Siarhei Volkau Committed by Linus Walleij

docs/pinctrl: fix pinctrl_select_state examples

The function requires two arguments.
Signed-off-by: default avatarSiarhei Volkau <lis8215@gmail.com>
Link: https://lore.kernel.org/r/20221101205159.1468069-2-lis8215@gmail.comSigned-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 97775ebb
......@@ -1238,7 +1238,7 @@ default state like this::
return PTR_ERR(foo->s);
}
ret = pinctrl_select_state(foo->s);
ret = pinctrl_select_state(foo->p, foo->s);
if (ret < 0) {
/* FIXME: clean up "foo" here */
return ret;
......@@ -1411,14 +1411,14 @@ on the pins defined by group B::
foo_switch()
{
/* Enable on position A */
ret = pinctrl_select_state(s1);
ret = pinctrl_select_state(p, s1);
if (ret < 0)
...
...
/* Enable on position B */
ret = pinctrl_select_state(s2);
ret = pinctrl_select_state(p, s2);
if (ret < 0)
...
......
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