/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2002, 2003, 06, 07 Ralf Baechle (ralf@linux-mips.org) * Copyright (C) 2007 MIPS Technologies, Inc. * written by Ralf Baechle (ralf@linux-mips.org) */ #include <linux/kernel.h> #include <linux/console.h> #include <linux/printk.h> #include <linux/init.h> #include <asm/setup.h> extern void prom_putchar(char);
static void early_console_write(struct console *con, const char *s, unsigned n) { while (n-- && *s) { if (*s == '\n') prom_putchar('\r'); prom_putchar(*s); s++; } }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 50 | 100.00% | 1 | 100.00% |
Total | 50 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 13 | 54.17% | 1 | 33.33% |
Franck Bui-Huu | 6 | 25.00% | 1 | 33.33% |
Thomas Gleixner | 5 | 20.83% | 1 | 33.33% |
Total | 24 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 106 | 83.46% | 1 | 25.00% |
Thomas Gleixner | 12 | 9.45% | 1 | 25.00% |
Franck Bui-Huu | 6 | 4.72% | 1 | 25.00% |
Dmitri Vorobiev | 3 | 2.36% | 1 | 25.00% |
Aaro Koskinen | 0.00% | 0 | 0.00% | |
Total | 127 | 100.00% | 4 | 100.00% |