Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(992)

Unified Diff: src/platform/tpm_lite/src/tlcl/generator.c

Issue 847005: Bug fixes and timing code. This is the first fully functional code, (Closed)
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/platform/tpm_lite/src/tlcl/generator.c
diff --git a/src/platform/tpm_lite/src/tlcl/generator.c b/src/platform/tpm_lite/src/tlcl/generator.c
index f3762f48ab961e28f1bf5989af897fb7e4a6c8e0..1e48481e22c0c952fc50389608fc82b8322cc6bf 100644
--- a/src/platform/tpm_lite/src/tlcl/generator.c
+++ b/src/platform/tpm_lite/src/tlcl/generator.c
@@ -191,7 +191,7 @@ Command* BuildStartupCommand(void) {
}
Command* BuildSelftestfullCommand(void) {
- int size = kTpmRequestHeaderLength + sizeof(TPM_PHYSICAL_PRESENCE);
+ int size = kTpmRequestHeaderLength;
Command* cmd = newCommand(TPM_ORD_SelfTestFull, size);
cmd->name = "tpm_selftestfull_cmd";
return cmd;

Powered by Google App Engine
This is Rietveld 408576698