The early console implementations are the same all over the place. Move the print function to kernel/printk and get rid of the copies. [akpm@linux-foundation.org: arch/mips/kernel/early_printk.c needs kernel.h for va_list] [paul.gortmaker@windriver.com: sh4: make the bios early console support depend on EARLY_PRINTK] Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Cc: Russell King <linux@arm.linux.org.uk> Acked-by: Mike Frysinger <vapier@gentoo.org> Cc: Michal Simek <monstr@monstr.eu> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mundt <lethal@linux-sh.org> Cc: "David S. Miller" <davem@davemloft.net> Cc: Chris Metcalf <cmetcalf@tilera.com> Cc: Richard Weinberger <richard@nod.at> Reviewed-by: Ingo Molnar <mingo@kernel.org> Tested-by: Paul Gortmaker <paul.gortmaker@windriver.com> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			990 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			990 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 *  linux/arch/arm/kernel/early_printk.c
 | 
						|
 *
 | 
						|
 *  Copyright (C) 2009 Sascha Hauer <s.hauer@pengutronix.de>
 | 
						|
 *
 | 
						|
 * 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.
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/kernel.h>
 | 
						|
#include <linux/console.h>
 | 
						|
#include <linux/init.h>
 | 
						|
 | 
						|
extern void printch(int);
 | 
						|
 | 
						|
static void early_write(const char *s, unsigned n)
 | 
						|
{
 | 
						|
	while (n-- > 0) {
 | 
						|
		if (*s == '\n')
 | 
						|
			printch('\r');
 | 
						|
		printch(*s);
 | 
						|
		s++;
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
static void early_console_write(struct console *con, const char *s, unsigned n)
 | 
						|
{
 | 
						|
	early_write(s, n);
 | 
						|
}
 | 
						|
 | 
						|
static struct console early_console_dev = {
 | 
						|
	.name =		"earlycon",
 | 
						|
	.write =	early_console_write,
 | 
						|
	.flags =	CON_PRINTBUFFER | CON_BOOT,
 | 
						|
	.index =	-1,
 | 
						|
};
 | 
						|
 | 
						|
static int __init setup_early_printk(char *buf)
 | 
						|
{
 | 
						|
	early_console = &early_console_dev;
 | 
						|
	register_console(&early_console_dev);
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
early_param("earlyprintk", setup_early_printk);
 |