arm: plat-orion: use void __iomem pointers for MPP functions
[pandora-kernel.git] / arch / arm / plat-orion / mpp.c
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];