summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSan Mehat <san@google.com>2009-09-17 21:27:41 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2011-11-30 11:36:55 (GMT)
commitfdfc8089429b58b4ac901926fe83fa85b0b7bfc1 (patch)
tree47ef7ed3e18f8e586fc0c6fb718cb8705ab94640
parentf4dc23861d9da89cfb5d2b0c5b3c96c115842a6c (diff)
downloadlinux-fsl-qoriq-fdfc8089429b58b4ac901926fe83fa85b0b7bfc1.tar.xz
staging: android: ramconsole: Ensure ramconsole does not get cluttered by apanic threads
[Note, this is part of a patch from Sam, just the drivers/staging/ portion, that adds a function that the apanic code calls, but the apanic code isn't here, so just include part of this to make merges and diffs easier and this keeps things self-contained - gregkh] Signed-off-by: San Mehat <san@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/staging/android/ram_console.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/staging/android/ram_console.c b/drivers/staging/android/ram_console.c
index 8f18a59..d735be4 100644
--- a/drivers/staging/android/ram_console.c
+++ b/drivers/staging/android/ram_console.c
@@ -146,6 +146,14 @@ static struct console ram_console = {
.index = -1,
};
+void ram_console_enable_console(int enabled)
+{
+ if (enabled)
+ ram_console.flags |= CON_ENABLED;
+ else
+ ram_console.flags &= ~CON_ENABLED;
+}
+
static void __init
ram_console_save_old(struct ram_console_buffer *buffer, char *dest)
{