From 0364618fe86a7e3ad9b9f79105c66cbefdc64ab6 Mon Sep 17 00:00:00 2001 From: Myles Watson Date: Fri, 16 Oct 2009 19:29:45 +0000 Subject: Change console code to emit SPEW with DEFAULT_CONSOLE_LOGLEVEL==8. Make MAXIMUM_CONSOLE_LOGLEVEL >= DEFAULT_CONSOLE_LOGLEVEL. Signed-off-by: Myles Watson Acked-by: Uwe Hermann Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4794 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/console/printk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/console/printk.c') diff --git a/src/console/printk.c b/src/console/printk.c index 0485a001da..f4157a7b00 100644 --- a/src/console/printk.c +++ b/src/console/printk.c @@ -32,7 +32,7 @@ int do_printk(int msg_level, const char *fmt, ...) va_list args; int i; - if (msg_level >= console_loglevel) { + if (msg_level > console_loglevel) { return 0; } -- cgit v1.2.3