gpiolib: Fix comment referring to gpio_*() in gpiod_*()
Fixes: 79a9becda8
("gpiolib: export descriptor-based GPIO interface")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
e0a8604f13
commit
1cfab8f8b3
|
@ -1867,7 +1867,7 @@ static void gpiod_set_array_value_priv(bool raw, bool can_sleep,
|
||||||
void gpiod_set_raw_value(struct gpio_desc *desc, int value)
|
void gpiod_set_raw_value(struct gpio_desc *desc, int value)
|
||||||
{
|
{
|
||||||
VALIDATE_DESC_VOID(desc);
|
VALIDATE_DESC_VOID(desc);
|
||||||
/* Should be using gpio_set_value_cansleep() */
|
/* Should be using gpiod_set_value_cansleep() */
|
||||||
WARN_ON(desc->gdev->chip->can_sleep);
|
WARN_ON(desc->gdev->chip->can_sleep);
|
||||||
_gpiod_set_raw_value(desc, value);
|
_gpiod_set_raw_value(desc, value);
|
||||||
}
|
}
|
||||||
|
@ -1887,7 +1887,7 @@ EXPORT_SYMBOL_GPL(gpiod_set_raw_value);
|
||||||
void gpiod_set_value(struct gpio_desc *desc, int value)
|
void gpiod_set_value(struct gpio_desc *desc, int value)
|
||||||
{
|
{
|
||||||
VALIDATE_DESC_VOID(desc);
|
VALIDATE_DESC_VOID(desc);
|
||||||
/* Should be using gpio_set_value_cansleep() */
|
/* Should be using gpiod_set_value_cansleep() */
|
||||||
WARN_ON(desc->gdev->chip->can_sleep);
|
WARN_ON(desc->gdev->chip->can_sleep);
|
||||||
if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
|
if (test_bit(FLAG_ACTIVE_LOW, &desc->flags))
|
||||||
value = !value;
|
value = !value;
|
||||||
|
|
Loading…
Reference in New Issue