summaryrefslogtreecommitdiff
path: root/src/console
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-08-17 17:29:36 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-08-26 20:59:45 +0000
commit21160a72eb4df56bd446353d81973a4c7c223922 (patch)
treed2f5ed65639aa6b8e09dd0641bb550a57ee46158 /src/console
parent117cf2bdcbbadb3b30c9c250130f82f5e6edc236 (diff)
downloadcoreboot-21160a72eb4df56bd446353d81973a4c7c223922.tar.xz
Add definition for ENV_ROMSTAGE_OR_BEFORE to <rules.h>
ENV_ROMSTAGE_OR_BEFORE is a direct replacement for testing defined(__PRE_RAM__) as a true statement instead of with the help of the preprocessor. Note that for x86, due to existence of ENV_POSTCAR and ENV_SMM, ENV_ROMSTAGE_OR_BEFORE and ENV_RAMSTAGE are not the inverse of each other. Change-Id: Ibd2292f922ccb9e79d10ca9bc35797048d174287 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34939 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/console')
-rw-r--r--src/console/printk.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/console/printk.c b/src/console/printk.c
index 8606bbb5c9..1165226b2a 100644
--- a/src/console/printk.c
+++ b/src/console/printk.c
@@ -49,8 +49,7 @@ int do_vprintk(int msg_level, const char *fmt, va_list args)
{
int i, log_this;
- if (CONFIG(SQUELCH_EARLY_SMP) && ENV_CACHE_AS_RAM &&
- !boot_cpu())
+ if (CONFIG(SQUELCH_EARLY_SMP) && ENV_ROMSTAGE_OR_BEFORE && !boot_cpu())
return 0;
log_this = console_log_level(msg_level);