projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
edc0e65
)
[PATCH] uml: eliminate doubled boot output
author
Jeff Dike
<jdike@addtoit.com>
Wed, 11 Jan 2006 20:17:28 +0000
(12:17 -0800)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Thu, 12 Jan 2006 02:42:09 +0000
(18:42 -0800)
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>
arch/um/drivers/mconsole_kern.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/um/drivers/mconsole_kern.c
b/arch/um/drivers/mconsole_kern.c
index be610125429ff47a7ea927872a7133c940ae2b68..e3d576567172bd9e64a854f7ab702eec34f05c6d 100644
(file)
--- 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)