// SPDX-License-Identifier: GPL-2.0 /* * Wrap-around code for a console using the * ARC io-routines. * * Copyright (c) 1998 Harald Koerfgen * Copyright (c) 2001 Ralf Baechle * Copyright (c) 2002 Thiemo Seufer */ #include <linux/tty.h> #include <linux/major.h> #include <linux/init.h> #include <linux/console.h> #include <linux/fs.h> #include <asm/sgialib.h>
static void prom_console_write(struct console *co, const char *s, unsigned count) { /* Do each character */ while (count--) { if (*s == '\n') prom_putchar('\r'); prom_putchar(*s++); } }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 37 | 80.43% | 1 | 50.00% |
Ralf Bächle | 9 | 19.57% | 1 | 50.00% |
Total | 46 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 17 | 73.91% | 1 | 50.00% |
Ralf Bächle | 6 | 26.09% | 1 | 50.00% |
Total | 23 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 13 | 72.22% | 1 | 33.33% |
Ralf Bächle | 4 | 22.22% | 1 | 33.33% |
Alan Cox | 1 | 5.56% | 1 | 33.33% |
Total | 18 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 98 | 67.12% | 1 | 25.00% |
Ralf Bächle | 41 | 28.08% | 1 | 25.00% |
Alan Cox | 6 | 4.11% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 0.68% | 1 | 25.00% |
Total | 146 | 100.00% | 4 | 100.00% |