From: Thierry Reding Date: Thu, 20 Jul 2017 17:01:07 +0000 (+0200) Subject: pinctrl: sirf: atlas7: Initialize GPIO offset X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=556ce55b7352a6634ffc97cece685e8efe7be181;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git pinctrl: sirf: atlas7: Initialize GPIO offset The GPIO offset is never initialized, which means that it will end up being zero as per the devm_kzalloc() of the parent structure. Signed-off-by: Thierry Reding Signed-off-by: Linus Walleij --- diff --git a/drivers/pinctrl/sirf/pinctrl-atlas7.c b/drivers/pinctrl/sirf/pinctrl-atlas7.c index 1efa315a7dbe..d1ef82ca97ad 100644 --- a/drivers/pinctrl/sirf/pinctrl-atlas7.c +++ b/drivers/pinctrl/sirf/pinctrl-atlas7.c @@ -6078,6 +6078,7 @@ static int atlas7_gpio_probe(struct platform_device *pdev) bank = &a7gc->banks[idx]; /* Set ctrl registers' base of this bank */ bank->base = ATLAS7_GPIO_BASE(a7gc, idx); + bank->gpio_offset = idx * NGPIO_OF_BANK; /* Get interrupt number from DTS */ ret = of_irq_get(np, idx);