Elyes HAOUAS has uploaded this change for review. ( https://review.coreboot.org/28878
Change subject: src/nb/i945: Fix "CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8" if statement ......................................................................
src/nb/i945: Fix "CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8" if statement
8 is the highest level.
Change-Id: I1ff87c76b3aef4af93d88dd9c02a743656aacfc0 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/northbridge/intel/i945/early_init.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/78/28878/1
diff --git a/src/northbridge/intel/i945/early_init.c b/src/northbridge/intel/i945/early_init.c index 7de2c73..f9906d7 100644 --- a/src/northbridge/intel/i945/early_init.c +++ b/src/northbridge/intel/i945/early_init.c @@ -952,7 +952,7 @@ i945_setup_root_complex_topology();
#if !IS_ENABLED(CONFIG_HAVE_ACPI_RESUME) -#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8 +#if (IS_ENABLED(CONFIG_DEFAULT_CONSOLE_LOGLEVEL_8)) #if IS_ENABLED(CONFIG_DEBUG_RAM_SETUP) sdram_dump_mchbar_registers();