aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/drivers
diff options
context:
space:
mode:
authorJeff Dike <jdike@addtoit.com>2006-01-11 12:17:28 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-11 18:42:09 -0800
commita174b30e2963a02e9657f4ac69b2b500993bf0d4 (patch)
tree9defc32aa50e73397ae8744ae07daac3a816b43d /arch/um/drivers
parent[PATCH] uml: revert compile-time option checking (diff)
downloadlinux-dev-a174b30e2963a02e9657f4ac69b2b500993bf0d4.tar.xz
linux-dev-a174b30e2963a02e9657f4ac69b2b500993bf0d4.zip
[PATCH] uml: eliminate doubled boot output
CON_PRINTBUFFER was a bad idea for the mconsole console. It causes the boot output to be printed twice. Signed-off-by: Jeff Dike <jdike@addtoit.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/drivers')
-rw-r--r--arch/um/drivers/mconsole_kern.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c
index be610125429f..e3d576567172 100644
--- a/arch/um/drivers/mconsole_kern.c
+++ b/arch/um/drivers/mconsole_kern.c
@@ -500,7 +500,7 @@ static void console_write(struct console *console, const char *string,
static struct console mc_console = { .name = "mc",
.write = console_write,
- .flags = CON_PRINTBUFFER | CON_ENABLED,
+ .flags = CON_ENABLED,
.index = -1 };
static int mc_add_console(void)