diff --git a/[refs] b/[refs] index db2da0f191e4..1126c6fe5d8c 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: a8135fcfd0431eda3653c7069e7aefc8674fdfbe +refs/heads/master: 7dea1b20066cd30fb54da7e686b16b5e38b46b2d diff --git a/trunk/include/asm-arm/arch-iop13xx/uncompress.h b/trunk/include/asm-arm/arch-iop13xx/uncompress.h index b9525d59b7ad..dd9c2934190e 100644 --- a/trunk/include/asm-arm/arch-iop13xx/uncompress.h +++ b/trunk/include/asm-arm/arch-iop13xx/uncompress.h @@ -1,7 +1,6 @@ #include #include #include -#include #define UART_BASE ((volatile u32 *)IOP13XX_UART1_PHYS) #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE) @@ -9,7 +8,7 @@ static inline void putc(char c) { while ((UART_BASE[UART_LSR] & TX_DONE) != TX_DONE) - cpu_relax(); + barrier(); UART_BASE[UART_TX] = c; }