summaryrefslogtreecommitdiff
path: root/firmware/include/vboot_nvstorage.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/vboot_nvstorage.h')
-rw-r--r--firmware/include/vboot_nvstorage.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/firmware/include/vboot_nvstorage.h b/firmware/include/vboot_nvstorage.h
index ef78e47a..48f93d5a 100644
--- a/firmware/include/vboot_nvstorage.h
+++ b/firmware/include/vboot_nvstorage.h
@@ -348,26 +348,4 @@ int VbNvGet(VbNvContext *context, VbNvParam param, uint32_t *dest);
*/
int VbNvSet(VbNvContext *context, VbNvParam param, uint32_t value);
-/**
- * Attempt to restore some fields of a lost VbNvContext from a backup area.
- * The rest of the fields are unchanged, so they'd need to be set to their
- * appropriate defaults by calling VbNvSetup() first (which is usually how we
- * know the fields have been lost).
- *
- * Returns 0 if success, non-zero if error.
- *
- * This may only be called between VbNvSetup() and VbNvTeardown().
- */
-int RestoreNvFromBackup(VbNvContext *vnc);
-
-/**
- * Attempt to save some fields of the VbNvContext to a backup area.
- *
- * Returns 0 if success, non-zero if error. If it succeeds, it will clear the
- * VBNV_BACKUP_NVRAM_REQUEST flag in the VbNvContext.
- *
- * This may only be called when the backup area is writable.
- */
-int SaveNvToBackup(VbNvContext *vnc);
-
#endif /* VBOOT_REFERENCE_NVSTORAGE_H_ */