diff options
author | Joel Kitching <kitching@google.com> | 2020-11-05 17:06:02 +0800 |
---|---|---|
committer | Joel Kitching <kitching@google.com> | 2020-11-18 05:49:46 +0000 |
commit | ec6cff2f20559db0212b76d4560fe4ae7f99771a (patch) | |
tree | fc8cc08833d3b5bfb3b2df760a52c3853b1bc35a /src/security | |
parent | 6ecd4c65e7d64ad6ed6d4f680b22d12413ea01ae (diff) |
vboot: stop implementing VbExDisplayScreen
This function is no longer required to be implemented since
EC/AUXFW sync was decoupled from vboot UI. (See CL:2087016.)
BUG=b:172343019
TEST=Compile locally
BRANCH=none
Signed-off-by: Joel Kitching <kitching@google.com>
Change-Id: I43e8160a4766a38c4fa14bcf4495fc719fbcd6c2
Reviewed-on: https://review.coreboot.org/c/coreboot/+/47233
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/security')
-rw-r--r-- | src/security/vboot/ec_sync.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/security/vboot/ec_sync.c b/src/security/vboot/ec_sync.c index 97b8ed9338..1fd7e7590b 100644 --- a/src/security/vboot/ec_sync.c +++ b/src/security/vboot/ec_sync.c @@ -12,7 +12,6 @@ #include <timer.h> #include <timestamp.h> #include <vb2_api.h> -#include <vboot_api.h> /* for VbExDisplayScreen() and VbScreenData */ #define _EC_FILENAME(select, suffix) \ (select == VB_SELECT_FIRMWARE_READONLY ? "ecro" suffix : "ecrw" suffix) @@ -402,21 +401,6 @@ static vb2_error_t ec_get_expected_hash(enum vb2_firmware_selection select, ***********************************************************************/ /* - * Unsupported. - * - * coreboot does not support the graphics initialization needed to - * display the vboot "wait" screens, etc., because the use case for - * supporting software sync early in the boot flow is to be able to - * quickly update the EC and/or sysjump to RW earlier so that USB-PD - * power (> 15 W) can be negotiated for earlier. - */ -vb2_error_t VbExDisplayScreen(uint32_t screen_type, uint32_t locale, - const VbScreenData *data) -{ - return VB2_ERROR_UNKNOWN; -} - -/* * Write opaque data into NV storage region. */ vb2_error_t vb2ex_commit_data(struct vb2_context *ctx) |