diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2019-09-06 11:45:36 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2019-09-11 16:45:01 +0300 |
commit | c83d3c77332e264ec77ceced614fe9630c7bfaad (patch) | |
tree | d67718b1cb8f04ac8f80f43f1f60902707a8ef36 /drivers/gpio/gpiolib-of.c | |
parent | ab4a85534c3ee67e9f54d3d5dda6e36072fbed89 (diff) | |
download | linux-c83d3c77332e264ec77ceced614fe9630c7bfaad.tar.xz |
gpio: of: Make of_get_named_gpiod_flags() private
Since commit f626d6dfb7098525 ("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>
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 5c38ede43c7a..142033574f70 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c @@ -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 * 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) { struct of_phandle_args gpiospec; |