vboot: remove use of VbInitParams

The VbInitParams struct will be deprecated.  Remove its
use in preparation.

Additionally, remove use of the flag
VB_INIT_OUT_ENABLE_USB_STORAGE, which is no longer used
downstream since vboot_reference CL:347257.

BUG=b:124141368, chromium:960226
TEST=make clean && make test-abuild
BRANCH=none

Change-Id: Ibe02cb6ba639de0d7cbdf79fc4dbf49044c92278
Signed-off-by: Joel Kitching <kitching@google.com>
Cq-Depend: chromium:1583943
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32664
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Joel Kitching
2019-05-07 13:01:53 +08:00
committed by Patrick Georgi
parent 0a433db22c
commit 9e8cf3cc86
3 changed files with 4 additions and 5 deletions

View File

@@ -85,7 +85,7 @@ static int vboot_get_handoff_flag(uint32_t flag)
if (vboot_get_handoff_info((void **)&vbho, NULL))
return 0;
return !!(vbho->init_params.out_flags & flag);
return !!(vbho->out_flags & flag);
}
int vboot_handoff_check_developer_flag(void)