diff options
m--------- | 3rdparty/vboot | 0 | ||||
-rw-r--r-- | src/security/vboot/ec_sync.c | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/vboot b/3rdparty/vboot -Subproject 1c4dbaa08419e13366db32ed20244f63c34388a +Subproject 695c56dc50a59e5c9098c94f41b3d86b8f99baf diff --git a/src/security/vboot/ec_sync.c b/src/security/vboot/ec_sync.c index c2a6b25f90..8a3ba71d75 100644 --- a/src/security/vboot/ec_sync.c +++ b/src/security/vboot/ec_sync.c @@ -399,9 +399,9 @@ vb2_error_t VbExDisplayScreen(uint32_t screen_type, uint32_t locale, /* * Write opaque data into NV storage region. */ -vb2_error_t VbExNvStorageWrite(const uint8_t *buf) +vb2_error_t vb2ex_commit_data(struct vb2_context *ctx) { - save_vbnv(buf); + save_vbnv(ctx->nvdata); return VB2_SUCCESS; } |