diff options
Diffstat (limited to 'src/security/vboot/vboot_crtm.c')
-rw-r--r-- | src/security/vboot/vboot_crtm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/security/vboot/vboot_crtm.c b/src/security/vboot/vboot_crtm.c index 4e69b7cddd..6aa5103f60 100644 --- a/src/security/vboot/vboot_crtm.c +++ b/src/security/vboot/vboot_crtm.c @@ -88,7 +88,7 @@ uint32_t vboot_init_crtm(void) } } - if (IS_ENABLED(CONFIG_VBOOT_STARTS_IN_ROMSTAGE)) { + if (CONFIG(VBOOT_STARTS_IN_ROMSTAGE)) { struct cbfsf romstage_data; /* measure romstage from RO */ if (cbfs_boot_locate(&romstage_data, @@ -111,7 +111,7 @@ uint32_t vboot_init_crtm(void) } } - if (IS_ENABLED(CONFIG_VBOOT_SEPARATE_VERSTAGE)) { + if (CONFIG(VBOOT_SEPARATE_VERSTAGE)) { struct cbfsf verstage_data; /* measure verstage from RO */ if (cbfs_boot_locate(&verstage_data, |