GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mach-iop13xx / include / mach / uncompress.h
blobfa4f80522fadd3f1db5b9acd988fae2f5baf291b
1 #include <asm/types.h>
2 #include <linux/serial_reg.h>
3 #include <mach/hardware.h>
5 #define UART_BASE ((volatile u32 *)IOP13XX_UART1_PHYS)
6 #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE)
8 static inline void putc(char c)
10 while ((UART_BASE[UART_LSR] & TX_DONE) != TX_DONE)
11 barrier();
12 UART_BASE[UART_TX] = c;
15 static inline void flush(void)
20 * nothing to do
22 #define arch_decomp_setup()
23 #define arch_decomp_wdog()