9
0
Fork 0

ARM: pfla02: Fix compiler warning

PUTC_LL no longer exists. Use putc_ll instead.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-09-25 12:28:19 +02:00
parent f043520c5a
commit 7220b134ba
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ static inline void setup_uart(void)
writel(0x0000c34f, uartbase + 0xa8); writel(0x0000c34f, uartbase + 0xa8);
writel(0x00000001, uartbase + 0x80); writel(0x00000001, uartbase + 0x80);
PUTC_LL('>'); putc_ll('>');
} }
extern char __dtb_imx6q_phytec_pbab01_start[]; extern char __dtb_imx6q_phytec_pbab01_start[];