From de1a3e105e29437e8d414a79a6078fd61df502e8 Mon Sep 17 00:00:00 2001 From: nbd Date: Thu, 17 Jul 2014 16:36:07 +0000 Subject: [PATCH] atheros: use correct address space and pointer type for register access Make sparse happy :) Signed-off-by: Sergey Ryazanov git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41686 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/atheros/patches-3.10/100-board.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/atheros/patches-3.10/100-board.patch b/target/linux/atheros/patches-3.10/100-board.patch index 36ad7c8925..02ab9432d4 100644 --- a/target/linux/atheros/patches-3.10/100-board.patch +++ b/target/linux/atheros/patches-3.10/100-board.patch @@ -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 -- 2.11.0