cregit-Linux how code gets into the kernel

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

PersonTokensPropCommitsCommitProp
Dan J Williams33100.00%2100.00%
Total33100.00%2100.00%


static inline void flush(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Dan J Williams8100.00%1100.00%
Total8100.00%1100.00%

/* * nothing to do */ #define arch_decomp_setup()

Overall Contributors

PersonTokensPropCommitsCommitProp
Dan J Williams6298.41%266.67%
Russell King11.59%133.33%
Total63100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.