aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/driver-api
diff options
context:
space:
mode:
authorRamon Fried <ramon.fried@linux.intel.com>2019-01-21 16:38:22 +0200
committerLinus Walleij <linus.walleij@linaro.org>2019-01-28 10:07:58 +0100
commit127428356eded298a2ed2af26010236c0a8e321c (patch)
tree57552a1171ecff7b7db07668b81e09f3a21fa9b7 /Documentation/driver-api
parentMerge branch 'ib-meson-fixes' into devel (diff)
downloadlinux-dev-127428356eded298a2ed2af26010236c0a8e321c.tar.xz
linux-dev-127428356eded298a2ed2af26010236c0a8e321c.zip
pinctrl.txt: Remove outdated information
Returning -EAGAIN is no longer supported by pin_config_group_set() since ad42fc6c8479 ("pinctrl: rip out the direct pinconf API") Remove the relevant section from the documentation. Signed-off-by: Ramon Fried <ramon.fried@linux.intel.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'Documentation/driver-api')
-rw-r--r--Documentation/driver-api/pinctl.rst9
1 files changed, 0 insertions, 9 deletions
diff --git a/Documentation/driver-api/pinctl.rst b/Documentation/driver-api/pinctl.rst
index 6cb68d67fa75..2bb1bc484278 100644
--- a/Documentation/driver-api/pinctl.rst
+++ b/Documentation/driver-api/pinctl.rst
@@ -274,15 +274,6 @@ configuration in the pin controller ops like this::
.confops = &foo_pconf_ops,
};
-Since some controllers have special logic for handling entire groups of pins
-they can exploit the special whole-group pin control function. The
-pin_config_group_set() callback is allowed to return the error code -EAGAIN,
-for groups it does not want to handle, or if it just wants to do some
-group-level handling and then fall through to iterate over all pins, in which
-case each individual pin will be treated by separate pin_config_set() calls as
-well.
-
-
Interaction with the GPIO subsystem
===================================