From: Andrew Morton Date: Tue, 8 May 2007 07:26:47 +0000 (-0700) Subject: enlarge console.name X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6ae9200f2cab7b328e505fc9a7021db64e0590cf;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git enlarge console.name console.name[] is eight chars, but so is "earlyvga". So when we try to print console->name when using earlyvga it runs off the end of the string. Make it bigger. Diagnosed-by: Gerd Hoffmann Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/console.h b/include/linux/console.h index de25ee3b7919..fcc18e012e45 100644 --- a/include/linux/console.h +++ b/include/linux/console.h @@ -92,9 +92,8 @@ void give_up_console(const struct consw *sw); #define CON_BOOT (8) #define CON_ANYTIME (16) /* Safe to call when cpu is offline */ -struct console -{ - char name[8]; +struct console { + char name[16]; void (*write)(struct console *, const char *, unsigned); int (*read)(struct console *, char *, unsigned); struct tty_driver *(*device)(struct console *, int *);