2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
7 * Copyright (C) 2007 MIPS Technologies, Inc.
10 #include <linux/kernel.h>
11 #include <linux/console.h>
12 #include <linux/printk.h>
13 #include <linux/init.h>
15 #include <asm/setup.h>
17 extern void prom_putchar(char);
19 static void early_console_write(struct console *con, const char *s, unsigned n)
29 static struct console early_console_prom = {
31 .write = early_console_write,
32 .flags = CON_PRINTBUFFER | CON_BOOT,
36 void __init setup_early_printk(void)
40 early_console = &early_console_prom;
42 register_console(&early_console_prom);