Skip to content
Snippets Groups Projects
Commit bcdf6b9f authored by Miquel Raynal's avatar Miquel Raynal Committed by Tom Rini
Browse files

tpm: report driver error code to upper layer


Instead of returning a generic 'library' error, report back the actual
error code so it can be displayed to the user by the regular error path.

Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
parent aa643013
No related branches found
No related tags found
No related merge requests found
......@@ -169,7 +169,8 @@ u32 tpm_sendrecv_command(const void *command, void *response, size_t *size_ptr)
response, &response_length);
if (err < 0)
return TPM_LIB_ERROR;
return err;
if (size_ptr)
*size_ptr = response_length;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment