aboutsummaryrefslogtreecommitdiff
path: root/src/security/vboot/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/security/vboot/misc.h')
-rw-r--r--src/security/vboot/misc.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/security/vboot/misc.h b/src/security/vboot/misc.h
index 9f681f6f7f..9dd482e846 100644
--- a/src/security/vboot/misc.h
+++ b/src/security/vboot/misc.h
@@ -23,21 +23,9 @@ struct vb2_context;
struct vb2_shared_data;
/*
- * Stores vboot-related information. selected_region is used by verstage to
- * store the location of the selected slot. buffer is used by vboot to store
- * its work buffer. vb2_context is contained within this work buffer, and is
- * accessible via vboot_get_context() declared below.
- * Keep the struct CPU architecture agnostic as it crosses stage boundaries.
- */
-struct vboot_working_data {
- /* offset of the buffer from the start of this struct */
- uint16_t buffer_offset;
-};
-
-/*
* Source: security/vboot/common.c
*/
-struct vboot_working_data *vboot_get_working_data(void);
+void *vboot_get_workbuf(void);
struct vb2_context *vboot_get_context(void);
/*