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

Unified Diff: firmware/lib/tpm_lite/tlcl.c

Issue 5796005: vboot TPM stub functions return error codes (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: Respond to code reviews Created 10 years 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
« no previous file with comments | « firmware/lib/tpm_lite/include/tlcl.h ('k') | firmware/stub/tpm_lite_stub.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: firmware/lib/tpm_lite/tlcl.c
diff --git a/firmware/lib/tpm_lite/tlcl.c b/firmware/lib/tpm_lite/tlcl.c
index cc0c373af6ee91207b84ec2d8ca6fc2a6081c988..99cc165afd33edf5fea94545279a53120d66b1f5 100644
--- a/firmware/lib/tpm_lite/tlcl.c
+++ b/firmware/lib/tpm_lite/tlcl.c
@@ -91,8 +91,8 @@ static uint32_t Send(const uint8_t* command) {
/* Exported functions. */
-void TlclLibInit(void) {
- TlclStubInit();
+uint32_t TlclLibInit(void) {
+ return TlclStubInit();
}
uint32_t TlclStartup(void) {
« no previous file with comments | « firmware/lib/tpm_lite/include/tlcl.h ('k') | firmware/stub/tpm_lite_stub.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698