[PATCH 6/6] mips: bcm47xx: Fix compiler warning

Sascha Hauer s.hauer at pengutronix.de
Tue Oct 1 02:22:08 EDT 2013


Fixes:

arch/mips/mach-bcm47xx/include/mach/debug_ll.h: In function 'PUTC_LL':
arch/mips/mach-bcm47xx/include/mach/debug_ll.h:33: warning: passing argument 1 of '__raw_readb' makes pointer from integer without a cast
arch/mips/mach-bcm47xx/include/mach/debug_ll.h:34: warning: passing argument 2 of '__raw_writeb' makes pointer from integer without a cast

Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
 arch/mips/mach-bcm47xx/include/mach/debug_ll.h | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/arch/mips/mach-bcm47xx/include/mach/debug_ll.h b/arch/mips/mach-bcm47xx/include/mach/debug_ll.h
index 0703bb0..9927b4d 100644
--- a/arch/mips/mach-bcm47xx/include/mach/debug_ll.h
+++ b/arch/mips/mach-bcm47xx/include/mach/debug_ll.h
@@ -30,8 +30,10 @@
 
 static __inline__ void PUTC_LL(char ch)
 {
-	while (!(__raw_readb(DEBUG_LL_UART_ADDR + lsr) & LSR_THRE));
-	__raw_writeb(ch, DEBUG_LL_UART_ADDR + rbr);
+	void *base = (void *)DEBUG_LL_UART_ADDR;
+
+	while (!(__raw_readb(base + lsr) & LSR_THRE));
+	__raw_writeb(ch, base + rbr);
 }
 
 #endif  /* __INCLUDE_ARCH_DEBUG_LL_H__ */
-- 
1.8.4.rc3




More information about the barebox mailing list