]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: android: ram_console: set CON_ANYTIME console flag
authorDima Zavin <dima@android.com>
Thu, 8 Mar 2012 01:34:28 +0000 (17:34 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Mar 2012 02:32:40 +0000 (18:32 -0800)
We want to ensure that we get all the console messages, even ones
that occur while the printing CPU is not yet online.

[jstultz: tweaked commit subject line]
CC: Android Kernel Team <kernel-team@android.com>
Signed-off-by: Dima Zavin <dima@android.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ram_console.c

index fabd398ec1bcbb311b36fc8657676503da6fa6eb..f01a0c45080b7b0a472d64a7eb6d7a9b1eb62e06 100644 (file)
@@ -143,7 +143,7 @@ ram_console_write(struct console *console, const char *s, unsigned int count)
 static struct console ram_console = {
        .name   = "ram",
        .write  = ram_console_write,
-       .flags  = CON_PRINTBUFFER | CON_ENABLED,
+       .flags  = CON_PRINTBUFFER | CON_ENABLED | CON_ANYTIME,
        .index  = -1,
 };