[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20221101205159.1468069-2-lis8215@gmail.com>
Date: Tue, 1 Nov 2022 23:51:58 +0300
From: Siarhei Volkau <lis8215@...il.com>
To: unlisted-recipients:; (no To-header on input)
Cc: Siarhei Volkau <lis8215@...il.com>,
Linus Walleij <linus.walleij@...aro.org>,
Jonathan Corbet <corbet@....net>, linux-gpio@...r.kernel.org,
linux-doc@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH 1/2] docs/pinctrl: fix pinctrl_select_state examples
The function requires two arguments.
Signed-off-by: Siarhei Volkau <lis8215@...il.com>
---
Documentation/driver-api/pin-control.rst | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Documentation/driver-api/pin-control.rst b/Documentation/driver-api/pin-control.rst
index 71eefe5a0..19a41c68d 100644
--- a/Documentation/driver-api/pin-control.rst
+++ b/Documentation/driver-api/pin-control.rst
@@ -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)
...
--
2.36.1
Powered by blists - more mailing lists