Explorar o código

pinctrl: sunxi: Fix off-by-one for valid offset range checking

The valid offset range should be 0 ... chip->ngpio - 1.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Axel Lin %!s(int64=12) %!d(string=hai) anos
pai
achega
c9e3b2d8f7
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      drivers/pinctrl/pinctrl-sunxi.c

+ 1 - 1
drivers/pinctrl/pinctrl-sunxi.c

@@ -521,7 +521,7 @@ static int sunxi_pinctrl_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
 	struct sunxi_pinctrl *pctl = dev_get_drvdata(chip->dev);
 	struct sunxi_desc_function *desc;
 
-	if (offset > chip->ngpio)
+	if (offset >= chip->ngpio)
 		return -ENXIO;
 
 	desc = sunxi_pinctrl_desc_find_function_by_pin(pctl, offset, "irq");