]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Fix compiler warnings in smartreflex.c
authorSanjeev Premi <premi@ti.com>
Fri, 10 Oct 2008 13:51:02 +0000 (19:21 +0530)
committerTony Lindgren <tony@atomide.com>
Fri, 17 Oct 2008 22:30:54 +0000 (15:30 -0700)
Fix these compiler warnings:
smartreflex.c:126: warning: initialization makes integer from pointer without a cast
smartreflex.c:134: warning: initialization makes integer from pointer without a cast

Refreshed after updates from Felipe.

Signed-off-by: Sanjeev Premi <premi@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/smartreflex.c

index e54c0fbc7583caf6298d6972c44458bf71fd76af..33f604da9b4b98f6dbe43d11772b7740142da080 100644 (file)
@@ -49,8 +49,8 @@ struct omap_sr {
        u32             opp1_nvalue, opp2_nvalue, opp3_nvalue, opp4_nvalue;
        u32             opp5_nvalue;
        u32             senp_mod, senn_mod;
-       u32             srbase_addr;
-       u32             vpbase_addr;
+       void __iomem    *srbase_addr;
+       void __iomem    *vpbase_addr;
 };
 
 /* Custom clocks to enable SR specific enable/disable functions. */
@@ -60,15 +60,15 @@ struct sr_custom_clk {
        struct omap_sr  *sr;
 };
 
-#define SR_REGADDR(offs)     (__force void __iomem *)(sr->srbase_addr + offset)
+#define SR_REGADDR(offs)       (sr->srbase_addr + offset)
 
-static inline void sr_write_reg(struct omap_sr *sr, int offset, u32 value)
+static inline void sr_write_reg(struct omap_sr *sr, unsigned offset, u32 value)
 {
        __raw_writel(value, SR_REGADDR(offset));
 }
 
-static inline void sr_modify_reg(struct omap_sr *sr, int offset, u32 mask,
-                                                               u32 value)
+static inline void sr_modify_reg(struct omap_sr *sr, unsigned offset, u32 mask,
+                                       u32 value)
 {
        u32 reg_val;
 
@@ -79,7 +79,7 @@ static inline void sr_modify_reg(struct omap_sr *sr, int offset, u32 mask,
        __raw_writel(reg_val, SR_REGADDR(offset));
 }
 
-static inline u32 sr_read_reg(struct omap_sr *sr, int offset)
+static inline u32 sr_read_reg(struct omap_sr *sr, unsigned offset)
 {
        return __raw_readl(SR_REGADDR(offset));
 }