X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Finclude%2Fconsole%2Floglevel.h;h=a765df2b64828dd6b9dfd82cdbf1e92289a628b2;hb=0867062412dd4bfe5a556e5f3fd85ba5b682d79b;hp=8978dbec158d4a5d7f5dc049f30702d7c2cb2c6d;hpb=9702b6bf7ec5a4fb16934f1cf2724480e2460c89;p=coreboot.git diff --git a/src/include/console/loglevel.h b/src/include/console/loglevel.h index 8978dbec1..a765df2b6 100644 --- a/src/include/console/loglevel.h +++ b/src/include/console/loglevel.h @@ -3,19 +3,19 @@ /* Safe for inclusion in assembly */ -#ifndef MAXIMUM_CONSOLE_LOGLEVEL -#define MAXIMUM_CONSOLE_LOGLEVEL 8 +#ifndef CONFIG_MAXIMUM_CONSOLE_LOGLEVEL +#define CONFIG_MAXIMUM_CONSOLE_LOGLEVEL 8 #endif -#ifndef DEFAULT_CONSOLE_LOGLEVEL -#define DEFAULT_CONSOLE_LOGLEVEL 8 /* anything MORE serious than BIOS_SPEW */ +#ifndef CONFIG_DEFAULT_CONSOLE_LOGLEVEL +#define CONFIG_DEFAULT_CONSOLE_LOGLEVEL 8 /* anything MORE serious than BIOS_SPEW */ #endif #ifndef ASM_CONSOLE_LOGLEVEL -#if (DEFAULT_CONSOLE_LOGLEVEL <= MAXIMUM_CONSOLE_LOGLEVEL) -#define ASM_CONSOLE_LOGLEVEL DEFAULT_CONSOLE_LOGLEVEL +#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL <= CONFIG_MAXIMUM_CONSOLE_LOGLEVEL) +#define ASM_CONSOLE_LOGLEVEL CONFIG_DEFAULT_CONSOLE_LOGLEVEL #else -#define ASM_CONSOLE_LOGLEVEL MAXIMUM_CONSOLE_LOGLEVEL +#define ASM_CONSOLE_LOGLEVEL CONFIG_MAXIMUM_CONSOLE_LOGLEVEL #endif #endif