gpio: make of_get_named_gpiod_flags() private
authorAlexandre Courbot <acourbot@nvidia.com>
Sat, 17 May 2014 05:54:50 +0000 (14:54 +0900)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 21 May 2014 09:14:46 +0000 (11:14 +0200)
commitf01d907582f8461546379aa415a7c6d5cfb8e5fd
treeb1e0520a32e14d14650f2eea7ad07dd149f81444
parent1aeede0b3c055665fb722a012d3cd834146fc112
gpio: make of_get_named_gpiod_flags() private

of_get_named_gpiod_flags() is visible and directly usable by GPIO
consumers, but it really should not as the gpiod interface relies
on the simpler gpiod_get() to provide properly-configured GPIOs.

of_get_named_gpiod_flags() is just used internally by gpiolib to
implement gpiod_get(), and by the old of_get_named_gpio_flags()
function, therefore it makes sense to make it gpiolib-private.

As a side-effect, the unused (and unneeded) of_get_gpiod_flags()
inline function is also removed, and of_get_named_gpio_flags() is moved
from a static inline function to a regular one in gpiolib-of.c

This results in all references to gpiod_* functions in of_gpio.h being
gone, which is the way it should be since this file is part of the old
integer GPIO interface.

Changes since v1:
- Fixed compilation error when CONFIG_OF_GPIO is not defined
- Fixed warning due to of_gpio_flags enum not being declared
  in private gpiolib.h header

Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpiolib-of.c
drivers/gpio/gpiolib.h
include/linux/of_gpio.h