summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/include/vboot_api.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/firmware/include/vboot_api.h b/firmware/include/vboot_api.h
index 5eedcaab..904e5a20 100644
--- a/firmware/include/vboot_api.h
+++ b/firmware/include/vboot_api.h
@@ -893,12 +893,14 @@ VbError_t VbExEcBatteryCutOff(void);
* severity levels for an auxiliary firmware update request
*/
typedef enum {
+ /* no update needed and no protection needed */
+ VB_AUX_FW_NO_DEVICE = 0,
/* no update needed */
- VB_AUX_FW_NO_UPDATE = 0,
+ VB_AUX_FW_NO_UPDATE = 1,
/* update needed, can be done quickly */
- VB_AUX_FW_FAST_UPDATE = 1,
+ VB_AUX_FW_FAST_UPDATE = 2,
/* update needed, "this would take a while..." */
- VB_AUX_FW_SLOW_UPDATE = 2,
+ VB_AUX_FW_SLOW_UPDATE = 3,
} VbAuxFwUpdateSeverity_t;
/**