gpio: bcm-kona: fix bcm_kona_gpio_reset() warnings
authorBen Dooks <ben.dooks@codethink.co.uk>
Tue, 7 Jun 2016 16:22:17 +0000 (17:22 +0100)
committerSasha Levin <sasha.levin@oracle.com>
Mon, 20 Jun 2016 03:47:46 +0000 (23:47 -0400)
commit1f9737df6d4e31106df4dd929cb3f936d2ce955d
tree6875331f6f1bb55c83d81dc551ccffcb9d431d13
parent869ffbd57257ffbc14bc21618b29dc16d4e7952d
gpio: bcm-kona: fix bcm_kona_gpio_reset() warnings

[ Upstream commit b66b2a0adf0e48973b582e055758b9907a7eee7c ]

The bcm_kona_gpio_reset() calls bcm_kona_gpio_write_lock_regs()
with what looks like the wrong parameter. The write_lock_regs
function takes a pointer to the registers, not the bcm_kona_gpio
structure.

Fix the warning, and probably bug by changing the function to
pass reg_base instead of kona_gpio, fixing the following warning:

drivers/gpio/gpio-bcm-kona.c:550:47: warning: incorrect type in argument 1
  (different address spaces)
  expected void [noderef] <asn:2>*reg_base
  got struct bcm_kona_gpio *kona_gpio
  warning: incorrect type in argument 1 (different address spaces)
  expected void [noderef] <asn:2>*reg_base
  got struct bcm_kona_gpio *kona_gpio

Cc: stable@vger.kernel.org
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Acked-by: Ray Jui <ray.jui@broadcom.com>
Reviewed-by: Markus Mayer <mmayer@broadcom.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
drivers/gpio/gpio-bcm-kona.c