From: Colin Cross Date: Fri, 8 Oct 2010 20:22:59 +0000 (-0700) Subject: HACK: fiq_debugger: Default to console enabled X-Git-Tag: firefly_0821_release~9834^2~465 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8fd9a6fb62d8a885763fc65725d1d299f6fa839f;p=firefly-linux-kernel-4.4.55.git HACK: fiq_debugger: Default to console enabled Change-Id: I2f39f389def6fafc2ad6ed045ed96d5bc4318d6c Signed-off-by: Colin Cross --- 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);