/* * arch/arm/mach-ebsa110/include/mach/uncompress.h * * Copyright (C) 1996,1997,1998 Russell King * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <linux/serial_reg.h> #define SERIAL_BASE ((unsigned char *)0xf0000be0) /* * This does not append a newline */
static inline void putc(int c) { unsigned char v, *base = SERIAL_BASE; do { v = base[UART_LSR << 2]; barrier(); } while (!(v & UART_LSR_THRE)); base[UART_TX << 2] = c; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 48 | 90.57% | 1 | 50.00% |
Linus Torvalds (pre-git) | 5 | 9.43% | 1 | 50.00% |
Total | 53 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 49 | 94.23% | 2 | 66.67% |
Linus Torvalds (pre-git) | 3 | 5.77% | 1 | 33.33% |
Total | 52 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 105 | 88.24% | 4 | 80.00% |
Linus Torvalds (pre-git) | 14 | 11.76% | 1 | 20.00% |
Total | 119 | 100.00% | 5 | 100.00% |