diff mbox

pinctrl: remove maxpin from documentation

Message ID 61439260263299de5969469fac565051db478bdb.1425308102.git.baruch@tkos.co.il
State New
Headers show

Commit Message

Baruch Siach March 2, 2015, 2:55 p.m. UTC
struct pinctrl_desc does not contain the maxpin member since commit 0d2006bbf0
(pinctrl: remove unnecessary max pin number).

Fixes: 0d2006bbf0 ('pinctrl: remove unnecessary max pin number')
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 Documentation/pinctrl.txt | 1 -
 1 file changed, 1 deletion(-)

Comments

Linus Walleij March 9, 2015, 11:21 a.m. UTC | #1
On Mon, Mar 2, 2015 at 3:55 PM, Baruch Siach <baruch@tkos.co.il> wrote:

> struct pinctrl_desc does not contain the maxpin member since commit 0d2006bbf0
> (pinctrl: remove unnecessary max pin number).
>
> Fixes: 0d2006bbf0 ('pinctrl: remove unnecessary max pin number')
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Patch applied.

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/Documentation/pinctrl.txt b/Documentation/pinctrl.txt
index b8f2147b96dd..348a8af8d06c 100644
--- a/Documentation/pinctrl.txt
+++ b/Documentation/pinctrl.txt
@@ -72,7 +72,6 @@  static struct pinctrl_desc foo_desc = {
 	.name = "foo",
 	.pins = foo_pins,
 	.npins = ARRAY_SIZE(foo_pins),
-	.maxpin = 63,
 	.owner = THIS_MODULE,
 };