MIPS: vct: fix I/O accessor calls

Use void pointers as address argument for readl( and writel()).
This is required for the upcoming MIPS asm header file and I/O
accessor update.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
This commit is contained in:
Daniel Schwierzeck 2016-01-09 17:32:46 +01:00
parent 8061cfc942
commit 0c7fd8f466
1 changed files with 4 additions and 2 deletions

View File

@ -80,12 +80,14 @@ void vct_pin_mux_initialize(void);
*/ */
static inline void reg_write(u32 addr, u32 data) static inline void reg_write(u32 addr, u32 data)
{ {
__raw_writel(data, addr + REG_GLOBAL_START_ADDR); void *reg = (void *)(addr + REG_GLOBAL_START_ADDR);
__raw_writel(data, reg);
} }
static inline u32 reg_read(u32 addr) static inline u32 reg_read(u32 addr)
{ {
return __raw_readl(addr + REG_GLOBAL_START_ADDR); const void *reg = (const void *)(addr + REG_GLOBAL_START_ADDR);
return __raw_readl(reg);
} }
#endif /* _VCT_H */ #endif /* _VCT_H */