0009-pinctrl-bcm2835-Set-base-to-0-give-expected-gpio-num.patch 695 B

12345678910111213141516171819202122
  1. From f318a741dc08f59c828e06097374aef494ecaac4 Mon Sep 17 00:00:00 2001
  2. From: notro <notro@tronnes.org>
  3. Date: Thu, 10 Jul 2014 13:59:47 +0200
  4. Subject: [PATCH 009/381] pinctrl-bcm2835: Set base to 0 give expected gpio
  5. numbering
  6. Signed-off-by: Noralf Tronnes <notro@tronnes.org>
  7. ---
  8. drivers/pinctrl/bcm/pinctrl-bcm2835.c | 2 +-
  9. 1 file changed, 1 insertion(+), 1 deletion(-)
  10. --- a/drivers/pinctrl/bcm/pinctrl-bcm2835.c
  11. +++ b/drivers/pinctrl/bcm/pinctrl-bcm2835.c
  12. @@ -373,7 +373,7 @@ static struct gpio_chip bcm2835_gpio_chi
  13. .get = bcm2835_gpio_get,
  14. .set = bcm2835_gpio_set,
  15. .to_irq = bcm2835_gpio_to_irq,
  16. - .base = -1,
  17. + .base = 0,
  18. .ngpio = BCM2835_NUM_GPIOS,
  19. .can_sleep = false,
  20. };