atheros: use correct address space and pointer type for register access

Make sparse happy :)

Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41686 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2014-07-17 16:36:07 +00:00
parent 75cfa4a0c2
commit fb557d90cc
1 changed files with 2 additions and 2 deletions

View File

@ -2876,13 +2876,13 @@
+static inline u32
+ar231x_read_reg(u32 reg)
+{
+ return __raw_readl((u32 *)KSEG1ADDR(reg));
+ return __raw_readl((void __iomem *)KSEG1ADDR(reg));
+}
+
+static inline void
+ar231x_write_reg(u32 reg, u32 val)
+{
+ __raw_writel(val, (u32 *)KSEG1ADDR(reg));
+ __raw_writel(val, (void __iomem *)KSEG1ADDR(reg));
+}
+
+static inline u32