diff options
| author | Rabin Vincent <rabin.vincent@stericsson.com> | 2010-07-29 12:13:18 +0100 | 
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-07-29 14:04:35 +0100 | 
| commit | 661f10f6b6ce55c737e88c4803453eba4ba3a61c (patch) | |
| tree | 08b68ecb2b26d16cbd6c26a7f356b9305da5900b | |
| parent | f1b957d3a06826f4a30fd4440e54a6b87c2e6173 (diff) | |
ARM: 6275/1: ux500: don't use writeb() in uncompress.h
Don't use writeb() in uncompress.h, to avoid the following build errors
when the "Add barriers to the I/O accessors" series is applied.  Use
__raw_writeb() instead.
arch/arm/boot/compressed/misc.o: In function `putc':
arch/arm/mach-ux500/include/mach/uncompress.h:41:
undefined reference to `outer_cache'
Acked-by: Linus Walleij <linus.walleij@stericsson.com>
Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
| -rw-r--r-- | arch/arm/mach-ux500/include/mach/uncompress.h | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/arch/arm/mach-ux500/include/mach/uncompress.h b/arch/arm/mach-ux500/include/mach/uncompress.h index 8552eb188b50..0271ca0a83df 100644 --- a/arch/arm/mach-ux500/include/mach/uncompress.h +++ b/arch/arm/mach-ux500/include/mach/uncompress.h @@ -30,22 +30,22 @@  static void putc(const char c)  {  	/* Do nothing if the UART is not enabled. */ -	if (!(readb(U8500_UART_CR) & 0x1)) +	if (!(__raw_readb(U8500_UART_CR) & 0x1))  		return;  	if (c == '\n')  		putc('\r'); -	while (readb(U8500_UART_FR) & (1 << 5)) +	while (__raw_readb(U8500_UART_FR) & (1 << 5))  		barrier(); -	writeb(c, U8500_UART_DR); +	__raw_writeb(c, U8500_UART_DR);  }  static void flush(void)  { -	if (!(readb(U8500_UART_CR) & 0x1)) +	if (!(__raw_readb(U8500_UART_CR) & 0x1))  		return; -	while (readb(U8500_UART_FR) & (1 << 3)) +	while (__raw_readb(U8500_UART_FR) & (1 << 3))  		barrier();  } | 
