// 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/setup.h> #include <asm/sgialib.h>
staticvoid prom_console_write(struct console *co, constchar *s, unsigned count)
{ /* Do each character */ while (count--) { if (*s == '\n')
prom_putchar('\r');
prom_putchar(*s++);
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.