summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Kitching <kitching@google.com>2019-01-11 19:17:34 +0800
committerPatrick Georgi <pgeorgi@google.com>2019-03-07 17:18:06 +0000
commitfdd35647652be1ea41ad8c4993619dae042c61c0 (patch)
tree303ac29253298f96470826d3efb27fd5591ed410
parent2d4e836f119e2b7c953e11a941690058e9f33095 (diff)
downloadcoreboot-fdd35647652be1ea41ad8c4993619dae042c61c0.tar.gz
coreboot-fdd35647652be1ea41ad8c4993619dae042c61c0.tar.bz2
coreboot-fdd35647652be1ea41ad8c4993619dae042c61c0.zip
vboot: rename VB2_SD_DEV_MODE_ENABLED
Rename VB2_SD_DEV_MODE_ENABLED to VB2_SD_FLAG_DEV_MODE_ENABLED. See CL in CQ-DEPEND for details. BUG=b:124141368 TEST=Build locally CQ-DEPEND=CL:1460644 BRANCH=none Change-Id: I298cd3a5026055e439de1ce409e61f1feb24369b Signed-off-by: Joel Kitching <kitching@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/31297 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
-rw-r--r--src/security/vboot/vboot_handoff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/vboot/vboot_handoff.c b/src/security/vboot/vboot_handoff.c
index 5ed50110a616..e8464140b9de 100644
--- a/src/security/vboot/vboot_handoff.c
+++ b/src/security/vboot/vboot_handoff.c
@@ -70,7 +70,7 @@ static void fill_vboot_handoff(struct vboot_handoff *vboot_handoff,
*oflags |= VB_INIT_OUT_ENABLE_DISPLAY;
*oflags |= VB_INIT_OUT_ENABLE_USB_STORAGE;
}
- if (vb2_sd->flags & VB2_SD_DEV_MODE_ENABLED) {
+ if (vb2_sd->flags & VB2_SD_FLAG_DEV_MODE_ENABLED) {
*oflags |= VB_INIT_OUT_ENABLE_DEVELOPER;
*oflags |= VB_INIT_OUT_CLEAR_RAM;
*oflags |= VB_INIT_OUT_ENABLE_DISPLAY;