diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-05-02 07:46:46 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2012-05-18 18:48:35 -0400 |
commit | 09d71ff19404b3957fab6de942fb8026ccfd8524 (patch) | |
tree | ba3680f5b79ea1fbeae073ab7cb28c9bdcad7e60 /include/asm-generic/gpio.h | |
parent | eb1567f7ad0032ba7b02b878e352f191d53dc228 (diff) |
gpiolib: Implement devm_gpio_request_one()
Allow drivers to use the modern request and configure idiom together
with devres.
As with plain gpio_request() and gpio_request_one() we can't implement
the old school version in terms of _one() as this would force the
explicit selection of a direction in gpio_request() which could break
systems if we pick the wrong one. Implementing devm_gpio_request_one()
in terms of devm_gpio_request() would needlessly complicate things or
lead to duplication from the unmanaged version depending on how it's
done.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'include/asm-generic/gpio.h')
-rw-r--r-- | include/asm-generic/gpio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h index 5f52690c3c8f..4ead12332c66 100644 --- a/include/asm-generic/gpio.h +++ b/include/asm-generic/gpio.h | |||
@@ -179,6 +179,8 @@ extern void gpio_free_array(const struct gpio *array, size_t num); | |||
179 | 179 | ||
180 | /* bindings for managed devices that want to request gpios */ | 180 | /* bindings for managed devices that want to request gpios */ |
181 | int devm_gpio_request(struct device *dev, unsigned gpio, const char *label); | 181 | int devm_gpio_request(struct device *dev, unsigned gpio, const char *label); |
182 | int devm_gpio_request_one(struct device *dev, unsigned gpio, | ||
183 | unsigned long flags, const char *label); | ||
182 | void devm_gpio_free(struct device *dev, unsigned int gpio); | 184 | void devm_gpio_free(struct device *dev, unsigned int gpio); |
183 | 185 | ||
184 | #ifdef CONFIG_GPIO_SYSFS | 186 | #ifdef CONFIG_GPIO_SYSFS |