mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-08 14:13:53 +00:00
gpio: of: Make of_get_named_gpiod_flags() private
Since commit f626d6dfb7
("gpio: of: Break out OF-only code"),
there are no more users of of_get_named_gpiod_flags() outside
gpiolib-of.c.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20190906084539.21838-2-geert+renesas@glider.be
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
ab4a85534c
commit
c83d3c7733
@ -223,7 +223,7 @@ static void of_gpio_flags_quirks(struct device_node *np,
|
|||||||
* value on the error condition. If @flags is not NULL the function also fills
|
* value on the error condition. If @flags is not NULL the function also fills
|
||||||
* in flags for the GPIO.
|
* in flags for the GPIO.
|
||||||
*/
|
*/
|
||||||
struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
|
static struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
|
||||||
const char *propname, int index, enum of_gpio_flags *flags)
|
const char *propname, int index, enum of_gpio_flags *flags)
|
||||||
{
|
{
|
||||||
struct of_phandle_args gpiospec;
|
struct of_phandle_args gpiospec;
|
||||||
|
@ -11,8 +11,6 @@ struct gpio_desc *of_find_gpio(struct device *dev,
|
|||||||
const char *con_id,
|
const char *con_id,
|
||||||
unsigned int idx,
|
unsigned int idx,
|
||||||
unsigned long *lookupflags);
|
unsigned long *lookupflags);
|
||||||
struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
|
|
||||||
const char *list_name, int index, enum of_gpio_flags *flags);
|
|
||||||
int of_gpiochip_add(struct gpio_chip *gc);
|
int of_gpiochip_add(struct gpio_chip *gc);
|
||||||
void of_gpiochip_remove(struct gpio_chip *gc);
|
void of_gpiochip_remove(struct gpio_chip *gc);
|
||||||
int of_gpio_get_count(struct device *dev, const char *con_id);
|
int of_gpio_get_count(struct device *dev, const char *con_id);
|
||||||
@ -25,11 +23,6 @@ static inline struct gpio_desc *of_find_gpio(struct device *dev,
|
|||||||
{
|
{
|
||||||
return ERR_PTR(-ENOENT);
|
return ERR_PTR(-ENOENT);
|
||||||
}
|
}
|
||||||
static inline struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
|
|
||||||
const char *list_name, int index, enum of_gpio_flags *flags)
|
|
||||||
{
|
|
||||||
return ERR_PTR(-ENOENT);
|
|
||||||
}
|
|
||||||
static inline int of_gpiochip_add(struct gpio_chip *gc) { return 0; }
|
static inline int of_gpiochip_add(struct gpio_chip *gc) { return 0; }
|
||||||
static inline void of_gpiochip_remove(struct gpio_chip *gc) { }
|
static inline void of_gpiochip_remove(struct gpio_chip *gc) { }
|
||||||
static inline int of_gpio_get_count(struct device *dev, const char *con_id)
|
static inline int of_gpio_get_count(struct device *dev, const char *con_id)
|
||||||
|
Loading…
Reference in New Issue
Block a user