security/vboot: Replace use of __PRE_RAM__

Change-Id: Ibaeda2762c733fdbe48979b635cc0cfd7ee4295d
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35387
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Kyösti Mälkki
2019-09-12 17:09:55 +03:00
parent 55d0ab5dc4
commit b590a04f78

View File

@ -117,11 +117,7 @@ static inline int vboot_logic_executed(void)
return !ENV_BOOTBLOCK; return !ENV_BOOTBLOCK;
} else if (CONFIG(VBOOT_STARTS_IN_ROMSTAGE)) { } else if (CONFIG(VBOOT_STARTS_IN_ROMSTAGE)) {
/* Post-RAM stages are "after the romstage" */ /* Post-RAM stages are "after the romstage" */
#ifdef __PRE_RAM__ return !ENV_ROMSTAGE_OR_BEFORE;
return 0;
#else
return 1;
#endif
} else { } else {
dead_code(); dead_code();
} }