diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-04-16 10:51:00 -0600 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2012-04-18 13:53:13 +0200 |
commit | 6d4ca1fb467932773da7b808c52f3d7ef4461ba0 (patch) | |
tree | 6e2055564dc75b2c44a3a41daf6ebfcfce326617 /Documentation/driver-model | |
parent | 2aeefe0233174015aef19dc06aac02a1119a44be (diff) | |
download | linux-6d4ca1fb467932773da7b808c52f3d7ef4461ba0.tar.gz linux-6d4ca1fb467932773da7b808c52f3d7ef4461ba0.tar.bz2 linux-6d4ca1fb467932773da7b808c52f3d7ef4461ba0.zip |
pinctrl: implement devm_pinctrl_get()/put()
These functions allow the driver core to automatically clean up any
allocations made by drivers, thus leading to simplified drivers.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'Documentation/driver-model')
-rw-r--r-- | Documentation/driver-model/devres.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/driver-model/devres.txt b/Documentation/driver-model/devres.txt index 2a596a4fc23e..ef4fa7b423d2 100644 --- a/Documentation/driver-model/devres.txt +++ b/Documentation/driver-model/devres.txt @@ -276,3 +276,7 @@ REGULATOR devm_regulator_get() devm_regulator_put() devm_regulator_bulk_get() + +PINCTRL + devm_pinctrl_get() + devm_pinctrl_put() |