Release 4.11 arch/arm/mach-iop13xx/include/mach/uncompress.h
#include <asm/types.h>
#include <linux/serial_reg.h>
#include <mach/hardware.h>
#define UART_BASE ((volatile u32 *)IOP13XX_UART1_PHYS)
#define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE)
static inline void putc(char c)
{
while ((UART_BASE[UART_LSR] & TX_DONE) != TX_DONE)
barrier();
UART_BASE[UART_TX] = c;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dan J Williams | 33 | 100.00% | 2 | 100.00% |
Total | 33 | 100.00% | 2 | 100.00% |
static inline void flush(void)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dan J Williams | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
/*
* nothing to do
*/
#define arch_decomp_setup()
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dan J Williams | 62 | 98.41% | 2 | 66.67% |
Russell King | 1 | 1.59% | 1 | 33.33% |
Total | 63 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.