Release 4.18 arch/arm/mach-iop13xx/include/mach/uncompress.h
/* SPDX-License-Identifier: GPL-2.0 */
#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 | 96.88% | 2 | 50.00% |
Russell King | 1 | 1.56% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 1.56% | 1 | 25.00% |
Total | 64 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.