summaryrefslogtreecommitdiff
path: root/firmware/lib/tpm_lite
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2010-09-08 16:40:14 -0700
committerRandall Spangler <rspangler@chromium.org>2010-09-08 16:40:14 -0700
commit528f6a20dbcf6aeca9fd4825984719038040af9c (patch)
tree8a0aeb9d6b39228639c5159f996daf8288236241 /firmware/lib/tpm_lite
parent1a2e6fc765a13b636d3dd75dc7cae709e9e8d218 (diff)
downloadvboot-528f6a20dbcf6aeca9fd4825984719038040af9c.tar.gz
fix missing constant
Change-Id: I26d7d725cb429394e24be40a2f362b7ff160f4ee BUG=none TEST=make && make runtests (and build into test BIOS) Review URL: http://codereview.chromium.org/3337017
Diffstat (limited to 'firmware/lib/tpm_lite')
-rw-r--r--firmware/lib/tpm_lite/include/tss_constants.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/firmware/lib/tpm_lite/include/tss_constants.h b/firmware/lib/tpm_lite/include/tss_constants.h
index d1d2f22f..5bbc0921 100644
--- a/firmware/lib/tpm_lite/include/tss_constants.h
+++ b/firmware/lib/tpm_lite/include/tss_constants.h
@@ -19,11 +19,12 @@
#define TPM_SUCCESS ((uint32_t)0x00000000)
-#define TPM_E_AREA_LOCKED ((uint32_t)0x00000003c)
-#define TPM_E_BADINDEX ((uint32_t)0x00000002)
-#define TPM_E_BAD_PRESENCE ((uint32_t)0x00000002d)
-#define TPM_E_MAXNVWRITES ((uint32_t)0x00000048)
-#define TPM_E_OWNER_SET ((uint32_t)0x00000014)
+#define TPM_E_AREA_LOCKED ((uint32_t)0x0000003c)
+#define TPM_E_BADINDEX ((uint32_t)0x00000002)
+#define TPM_E_BAD_PRESENCE ((uint32_t)0x0000002d)
+#define TPM_E_INVALID_POSTINIT ((uint32_t)0x00000026)
+#define TPM_E_MAXNVWRITES ((uint32_t)0x00000048)
+#define TPM_E_OWNER_SET ((uint32_t)0x00000014)
#define TPM_E_NEEDS_SELFTEST ((uint32_t)(TPM_E_NON_FATAL + 1))
#define TPM_E_DOING_SELFTEST ((uint32_t)(TPM_E_NON_FATAL + 2))