*/
 
 /* Low level read/write registers functions */
-static inline u32 oxu_readl(void *base, u32 reg)
+static inline u32 oxu_readl(void __iomem *base, u32 reg)
 {
        return readl(base + reg);
 }
 
-static inline void oxu_writel(void *base, u32 reg, u32 val)
+static inline void oxu_writel(void __iomem *base, u32 reg, u32 val)
 {
        writel(val, base + reg);
 }
  * Module stuff
  */
 
-static void oxu_configuration(struct platform_device *pdev, void *base)
+static void oxu_configuration(struct platform_device *pdev, void __iomem *base)
 {
        u32 tmp;
 
        oxu_writel(base, OXU_CHIPIRQEN_SET, OXU_USBSPHLPWUI | OXU_USBOTGLPWUI);
 }
 
-static int oxu_verify_id(struct platform_device *pdev, void *base)
+static int oxu_verify_id(struct platform_device *pdev, void __iomem *base)
 {
        u32 id;
        static const char * const bo[] = {
 static const struct hc_driver oxu_hc_driver;
 static struct usb_hcd *oxu_create(struct platform_device *pdev,
                                unsigned long memstart, unsigned long memlen,
-                               void *base, int irq, int otg)
+                               void __iomem *base, int irq, int otg)
 {
        struct device *dev = &pdev->dev;
 
 
 static int oxu_init(struct platform_device *pdev,
                                unsigned long memstart, unsigned long memlen,
-                               void *base, int irq)
+                               void __iomem *base, int irq)
 {
        struct oxu_info *info = platform_get_drvdata(pdev);
        struct usb_hcd *hcd;
 static int oxu_drv_probe(struct platform_device *pdev)
 {
        struct resource *res;
-       void *base;
+       void __iomem *base;
        unsigned long memstart, memlen;
        int irq, ret;
        struct oxu_info *info;