diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2016-06-15 16:57:38 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2016-06-22 18:29:30 -0400 |
commit | 39243ee771666e02201ba89c1d76fdc28e9cf681 (patch) | |
tree | c8a1f7b6d16eecada21a5df378667c11fc680122 | |
parent | 0b305ccc1b545d3389068ddc3548cbc877513b97 (diff) |
gpio: make sure gpiod_to_irq() returns negative on NULL desc
commit 54d77198fdfbc4f0fe11b4252c1d9c97d51a3264
("gpio: bail out silently on NULL descriptors")
doesn't work for gpiod_to_irq(): drivers assume that NULL
descriptors will give negative IRQ numbers in return.
It has been pointed out that returning 0 is NO_IRQ and that
drivers should be amended to treat this as an error, but that
is for the longer term: now let us repair the semantics.
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
Reported-by: Hans de Goede <hdegoede@redhat.com>
Tested-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpiolib.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index 58d822d7e8da..f39bf05993e7 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c | |||
@@ -2056,7 +2056,14 @@ int gpiod_to_irq(const struct gpio_desc *desc) | |||
2056 | struct gpio_chip *chip; | 2056 | struct gpio_chip *chip; |
2057 | int offset; | 2057 | int offset; |
2058 | 2058 | ||
2059 | VALIDATE_DESC(desc); | 2059 | /* |
2060 | * Cannot VALIDATE_DESC() here as gpiod_to_irq() consumer semantics | ||
2061 | * requires this function to not return zero on an invalid descriptor | ||
2062 | * but rather a negative error number. | ||
2063 | */ | ||
2064 | if (!desc || !desc->gdev || !desc->gdev->chip) | ||
2065 | return -EINVAL; | ||
2066 | |||
2060 | chip = desc->gdev->chip; | 2067 | chip = desc->gdev->chip; |
2061 | offset = gpio_chip_hwgpio(desc); | 2068 | offset = gpio_chip_hwgpio(desc); |
2062 | if (chip->to_irq) { | 2069 | if (chip->to_irq) { |