Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

m68knommu: fix gpio warnings for ColdFire 5407 targets

Fix these compiler warnings:

arch/m68knommu/platform/5407/gpio.c:35:3: warning: initialisation makes pointer from integer without a cast
arch/m68knommu/platform/5407/gpio.c:36:3: warning: initialisation makes pointer from integer without a cast
arch/m68knommu/platform/5407/gpio.c:37:3: warning: initialisation makes pointer from integer without a cast

Signed-off-by: Greg Ungerer <gerg@uclinux.org>

+3 -3
+3 -3
arch/m68knommu/platform/5407/gpio.c
··· 32 32 .set = mcf_gpio_set_value, 33 33 .ngpio = 16, 34 34 }, 35 - .pddr = MCFSIM_PADDR, 36 - .podr = MCFSIM_PADAT, 37 - .ppdr = MCFSIM_PADAT, 35 + .pddr = (void __iomem *) MCFSIM_PADDR, 36 + .podr = (void __iomem *) MCFSIM_PADAT, 37 + .ppdr = (void __iomem *) MCFSIM_PADAT, 38 38 }, 39 39 }; 40 40