/* * arch/arm/mach-ixp4xx/include/mach/uncompress.h * * Copyright (C) 2002 Intel Corporation. * Copyright (C) 2003-2004 MontaVista Software, Inc. * * 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. * */ #ifndef _ARCH_UNCOMPRESS_H_ #define _ARCH_UNCOMPRESS_H_ #include "ixp4xx-regs.h" #include <asm/mach-types.h> #include <linux/serial_reg.h> #define TX_DONE (UART_LSR_TEMT|UART_LSR_THRE) volatile u32* uart_base;
static inline void putc(int c) { /* Check THRE and TEMT bits before we transmit the character. */ while ((uart_base[UART_LSR] & TX_DONE) != TX_DONE) barrier(); *uart_base = c; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Deepak Saxena | 27 | 84.38% | 1 | 50.00% |
Russell King | 5 | 15.62% | 1 | 50.00% |
Total | 32 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Deepak Saxena | 4 | 57.14% | 1 | 50.00% |
Russell King | 3 | 42.86% | 1 | 50.00% |
Total | 7 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Deepak Saxena | 33 | 61.11% | 1 | 16.67% |
Richard Cochran | 9 | 16.67% | 1 | 16.67% |
Imre Kaloz | 7 | 12.96% | 2 | 33.33% |
George T. Joseph | 3 | 5.56% | 1 | 16.67% |
Russell King | 2 | 3.70% | 1 | 16.67% |
Total | 54 | 100.00% | 6 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Deepak Saxena | 95 | 75.40% | 1 | 11.11% |
Russell King | 11 | 8.73% | 3 | 33.33% |
Richard Cochran | 9 | 7.14% | 1 | 11.11% |
Imre Kaloz | 7 | 5.56% | 2 | 22.22% |
George T. Joseph | 3 | 2.38% | 1 | 11.11% |
Krzysztof Hałasa | 1 | 0.79% | 1 | 11.11% |
Total | 126 | 100.00% | 9 | 100.00% |