summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/vboot.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/vboot.h b/include/vboot.h
index 771aeda599..9c09e1aba2 100644
--- a/include/vboot.h
+++ b/include/vboot.h
@@ -156,9 +156,10 @@ enum cr50_comm_err {
CR50_COMM_ERR_CRC = 0xec03,
CR50_COMM_ERR_SIZE = 0xec04,
CR50_COMM_ERR_TIMEOUT = 0xec05, /* Generated by EC */
- CR50_COMM_ERR_BAD_PAYLOAD = 0xec06,
- CR50_COMM_ERR_UNDEFINED_CMD = 0xec07,
+ CR50_COMM_ERR_UNDEFINED_CMD = 0xec06,
+ CR50_COMM_ERR_BAD_PAYLOAD = 0xec07,
CR50_COMM_ERR_STRUCT_VERSION = 0xec08,
+ CR50_COMM_ERR_NVMEM = 0xec09,
} __packed;
BUILD_ASSERT(sizeof(enum cr50_comm_err) == sizeof(uint16_t));