m68knommu: fix gpio warnings for ColdFire 5272 targets
authorGreg Ungerer <gerg@uclinux.org>
Tue, 8 Mar 2011 23:07:36 +0000 (09:07 +1000)
committerGreg Ungerer <gerg@uclinux.org>
Tue, 15 Mar 2011 11:01:56 +0000 (21:01 +1000)
Fix these compiler warnings:

arch/m68knommu/platform/5272/gpio.c:35:3: warning: initialisation makes pointer from integer without a cast
arch/m68knommu/platform/5272/gpio.c:36:3: warning: initialisation makes pointer from integer without a cast
arch/m68knommu/platform/5272/gpio.c:37:3: warning: initialisation makes pointer from integer without a cast
arch/m68knommu/platform/5272/gpio.c:51:3: warning: initialisation makes pointer from integer without a cast
arch/m68knommu/platform/5272/gpio.c:52:3: warning: initialisation makes pointer from integer without a cast
arch/m68knommu/platform/5272/gpio.c:53:3: warning: initialisation makes pointer from integer without a cast
arch/m68knommu/platform/5272/gpio.c:67:3: warning: initialisation makes pointer from integer without a cast
arch/m68knommu/platform/5272/gpio.c:68:3: warning: initialisation makes pointer from integer without a cast
arch/m68knommu/platform/5272/gpio.c:69:3: warning: initialisation makes pointer from integer without a cast

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
arch/m68knommu/platform/5272/gpio.c

index 459db89..57ac10a 100644 (file)
@@ -32,9 +32,9 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = {
                        .set                    = mcf_gpio_set_value,
                        .ngpio                  = 16,
                },
-               .pddr                           = MCFSIM_PADDR,
-               .podr                           = MCFSIM_PADAT,
-               .ppdr                           = MCFSIM_PADAT,
+               .pddr                           = (void __iomem *) MCFSIM_PADDR,
+               .podr                           = (void __iomem *) MCFSIM_PADAT,
+               .ppdr                           = (void __iomem *) MCFSIM_PADAT,
        },
        {
                .gpio_chip                      = {
@@ -48,9 +48,9 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = {
                        .base                   = 16,
                        .ngpio                  = 16,
                },
-               .pddr                           = MCFSIM_PBDDR,
-               .podr                           = MCFSIM_PBDAT,
-               .ppdr                           = MCFSIM_PBDAT,
+               .pddr                           = (void __iomem *) MCFSIM_PBDDR,
+               .podr                           = (void __iomem *) MCFSIM_PBDAT,
+               .ppdr                           = (void __iomem *) MCFSIM_PBDAT,
        },
        {
                .gpio_chip                      = {
@@ -64,9 +64,9 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = {
                        .base                   = 32,
                        .ngpio                  = 16,
                },
-               .pddr                           = MCFSIM_PCDDR,
-               .podr                           = MCFSIM_PCDAT,
-               .ppdr                           = MCFSIM_PCDAT,
+               .pddr                           = (void __iomem *) MCFSIM_PCDDR,
+               .podr                           = (void __iomem *) MCFSIM_PCDAT,
+               .ppdr                           = (void __iomem *) MCFSIM_PCDAT,
        },
 };