]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
gpio: omap: fix static checker warning
authorGrygorii Strashko <grygorii.strashko@ti.com>
Fri, 25 Sep 2015 19:06:02 +0000 (12:06 -0700)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 16 Oct 2015 14:37:07 +0000 (16:37 +0200)
commit30cefeacec3e289c00128f28b831fb251650eea6
tree1ba9634770da6d27d6742d085fa1a4b89d040fa5
parent26ba9cd48fc0c2ff741de913270e9469506f3666
gpio: omap: fix static checker warning

This patch fixes below static checker warning by changing
type of irq field in struct gpio_bank from u16 to int.

drivers/gpio/gpio-omap.c:1191 omap_gpio_probe()
warn: assigning (-6) to unsigned variable 'bank->irq'

drivers/gpio/gpio-omap.c
  1188          bank->irq = platform_get_irq(pdev, 0);
  1189          if (bank->irq <= 0) {

bank->irq is u16.

  1190                  if (!bank->irq)
  1191                          bank->irq = -ENXIO;

Does not work.

  1192                  if (bank->irq != -EPROBE_DEFER)

Does not work.

  1193                          dev_err(dev,
  1194                                  "can't get irq resource ret=%d\n", bank->irq);
  1195                  return bank->irq;
  1196          }

Fixes: commit 89d18e3af8b9: "gpio: omap: switch to use platform_get_irq"
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-omap.c