9
0
Fork 0

mips: bcm47xx: Fix compiler warning

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@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-09-30 16:11:09 +02:00
parent fd4d237fc9
commit b2755ea06d
1 changed files with 4 additions and 2 deletions

View File

@ -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__ */