arm: plat-orion: use void __iomem pointers for MPP functions
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tue, 11 Sep 2012 12:27:24 +0000 (14:27 +0200)
committerJason Cooper <jason@lakedaemon.net>
Fri, 21 Sep 2012 18:04:24 +0000 (18:04 +0000)
The registration function for MPP now takes void __iomem pointers, so
we remove the temporary "unsigned long" casts from the mach-*/mpp.c
files.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Tested-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
arch/arm/mach-dove/mpp.c
arch/arm/mach-kirkwood/mpp.c
arch/arm/mach-mv78xx0/mpp.c
arch/arm/mach-orion5x/mpp.c
arch/arm/plat-orion/include/plat/mpp.h
arch/arm/plat-orion/mpp.c

index fc04ebe..7f70afc 100644 (file)
@@ -151,8 +151,7 @@ void __init dove_mpp_conf(unsigned int *mpp_list,
        dove_mpp_dump_regs();
 
        /* Use platform code for pins 0-23 */
-       orion_mpp_conf(mpp_list, 0, MPP_MAX,
-                      (unsigned long) DOVE_MPP_VIRT_BASE);
+       orion_mpp_conf(mpp_list, 0, MPP_MAX, DOVE_MPP_VIRT_BASE);
 
        dove_mpp_conf_grp(mpp_grp_list);
        dove_mpp_cfg_au1(grp_au1_52_57);
index 6774279..0c6ad63 100644 (file)
@@ -38,6 +38,5 @@ static unsigned int __init kirkwood_variant(void)
 void __init kirkwood_mpp_conf(unsigned int *mpp_list)
 {
        orion_mpp_conf(mpp_list, kirkwood_variant(),
-                      MPP_MAX,
-                      (unsigned long) DEV_BUS_VIRT_BASE);
+                      MPP_MAX, DEV_BUS_VIRT_BASE);
 }
index 4da82f8..df50342 100644 (file)
@@ -33,6 +33,5 @@ static unsigned int __init mv78xx0_variant(void)
 void __init mv78xx0_mpp_conf(unsigned int *mpp_list)
 {
        orion_mpp_conf(mpp_list, mv78xx0_variant(),
-                      MPP_MAX,
-                      (unsigned long) DEV_BUS_VIRT_BASE);
+                      MPP_MAX, DEV_BUS_VIRT_BASE);
 }
index 30f5ef6..5b70026 100644 (file)
@@ -40,6 +40,5 @@ static unsigned int __init orion5x_variant(void)
 void __init orion5x_mpp_conf(unsigned int *mpp_list)
 {
        orion_mpp_conf(mpp_list, orion5x_variant(),
-                      MPP_MAX,
-                      (unsigned long) ORION5X_DEV_BUS_VIRT_BASE);
+                      MPP_MAX, ORION5X_DEV_BUS_VIRT_BASE);
 }
index 723adce..254552f 100644 (file)
@@ -29,6 +29,6 @@
 #define MPP_OUTPUT_MASK                GENERIC_MPP(0, 0x0, 0, 1)
 
 void __init orion_mpp_conf(unsigned int *mpp_list, unsigned int variant_mask,
-                          unsigned int mpp_max, unsigned int dev_bus);
+                          unsigned int mpp_max, void __iomem *dev_bus);
 
 #endif
index 3b1e17b..20d4208 100644 (file)
 #include <plat/mpp.h>
 
 /* Address of the ith MPP control register */
-static __init unsigned long mpp_ctrl_addr(unsigned int i,
-                                         unsigned long dev_bus)
+static __init void __iomem *mpp_ctrl_addr(unsigned int i,
+                                         void __iomem *dev_bus)
 {
        return dev_bus + (i) * 4;
 }
 
 
 void __init orion_mpp_conf(unsigned int *mpp_list, unsigned int variant_mask,
-                          unsigned int mpp_max, unsigned int dev_bus)
+                          unsigned int mpp_max, void __iomem *dev_bus)
 {
        unsigned int mpp_nr_regs = (1 + mpp_max/8);
        u32 mpp_ctrl[mpp_nr_regs];