From 8fd9a6fb62d8a885763fc65725d1d299f6fa839f Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Fri, 8 Oct 2010 13:22:59 -0700 Subject: [PATCH] HACK: fiq_debugger: Default to console enabled Change-Id: I2f39f389def6fafc2ad6ed045ed96d5bc4318d6c Signed-off-by: Colin Cross --- arch/arm/common/fiq_debugger.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/common/fiq_debugger.c b/arch/arm/common/fiq_debugger.c index 330053856c76..d22ca8d51139 100644 --- a/arch/arm/common/fiq_debugger.c +++ b/arch/arm/common/fiq_debugger.c @@ -94,8 +94,8 @@ static bool initial_no_sleep = true; #else static bool initial_no_sleep; #endif -static bool initial_debug_enable; -static bool initial_console_enable; +static bool initial_debug_enable = true; +static bool initial_console_enable = true; module_param_named(no_sleep, initial_no_sleep, bool, 0644); module_param_named(debug_enable, initial_debug_enable, bool, 0644); -- 2.34.1