From: Vignesh Raghavendra Date: Tue, 28 Jan 2020 10:10:02 +0000 (+0530) Subject: gpio: da8xx_gpio: Fix compiler warning X-Git-Tag: v2020.04-rc2~19^2~6 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=94f992d57a628cc8be40ced17ae87cf364fecffc;p=oweals%2Fu-boot.git gpio: da8xx_gpio: Fix compiler warning Fix below compiler warning for 64bit builds drivers/gpio/da8xx_gpio.c: In function ‘davinci_get_gpio_bank’: drivers/gpio/da8xx_gpio.c:446:9: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] return (struct davinci_gpio *)addr; Signed-off-by: Vignesh Raghavendra Signed-off-by: Faiz Abbas Signed-off-by: Lokesh Vutla --- diff --git a/drivers/gpio/da8xx_gpio.c b/drivers/gpio/da8xx_gpio.c index bd5a366aef..d28e1fa14c 100644 --- a/drivers/gpio/da8xx_gpio.c +++ b/drivers/gpio/da8xx_gpio.c @@ -434,7 +434,7 @@ int gpio_set_value(unsigned int gpio, int value) static struct davinci_gpio *davinci_get_gpio_bank(struct udevice *dev, unsigned int offset) { struct davinci_gpio_bank *bank = dev_get_priv(dev); - unsigned int addr; + unsigned long addr; /* * The device tree is not broken into banks but the infrastructure is