summaryrefslogtreecommitdiffstats
path: root/Documentation/driver-api
diff options
context:
space:
mode:
authorSiarhei Volkau <lis8215@gmail.com>2022-11-01 23:51:59 +0300
committerLinus Walleij <linus.walleij@linaro.org>2022-11-09 09:27:53 +0100
commit4829297c9bf4659f98e946ba810ebe86411e6a9d (patch)
treeb228f3d6a33ebbbdc203ad3e8fc4da63123375f4 /Documentation/driver-api
parentc1542be1ef070589996ea4ebf847afa5577298af (diff)
downloadlinux-4829297c9bf4659f98e946ba810ebe86411e6a9d.tar.bz2
docs/pinctrl: fix runtime pinmuxing example
The example declares "struct pinctrl *p" but refers to "foo->p" which isn't declared in the context of the example. Signed-off-by: Siarhei Volkau <lis8215@gmail.com> Link: https://lore.kernel.org/r/20221101205159.1468069-3-lis8215@gmail.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'Documentation/driver-api')
-rw-r--r--Documentation/driver-api/pin-control.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/driver-api/pin-control.rst b/Documentation/driver-api/pin-control.rst
index 19a41c68d579..0022e930e93e 100644
--- a/Documentation/driver-api/pin-control.rst
+++ b/Documentation/driver-api/pin-control.rst
@@ -1399,11 +1399,11 @@ on the pins defined by group B::
if (IS_ERR(p))
...
- s1 = pinctrl_lookup_state(foo->p, "pos-A");
+ s1 = pinctrl_lookup_state(p, "pos-A");
if (IS_ERR(s1))
...
- s2 = pinctrl_lookup_state(foo->p, "pos-B");
+ s2 = pinctrl_lookup_state(p, "pos-B");
if (IS_ERR(s2))
...
}