diff options
author | Alexandre Courbot <acourbot@nvidia.com> | 2014-07-22 16:17:41 +0900 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-07-23 17:41:12 +0200 |
commit | 1bd6b601fe196b6fbce2c93536ce0f3f53577cec (patch) | |
tree | 5e20cf3705cbb6f311a4b26795cbd7e4c8a14f11 /drivers/gpio/gpiolib-of.c | |
parent | 14141a9352d007434ff61df1e16a2bcaf3119307 (diff) | |
download | linux-next-1bd6b601fe196b6fbce2c93536ce0f3f53577cec.tar.gz |
gpio: make gpiochip_get_desc() gpiolib-private
As GPIO descriptors are not going to remain unique anymore, having this
function public is not safe. Restrain its use to gpiolib since we have
no user outside of it.
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpiolib-of.c')
-rw-r--r-- | drivers/gpio/gpiolib-of.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 3e2fae205bee..7cfdc2278905 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c @@ -23,7 +23,7 @@ #include <linux/pinctrl/pinctrl.h> #include <linux/slab.h> -struct gpio_desc; +#include "gpiolib.h" /* Private data structure for of_gpiochip_find_and_xlate */ struct gg_data { |