Skip to content

Commit

Permalink
[PATCH] uml: eliminate doubled boot output
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jeff Dike authored and Linus Torvalds committed Jan 12, 2006
1 parent edc0e65 commit a174b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/um/drivers/mconsole_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a174b30

Please sign in to comment.