mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
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: Miquel Raynal <miquel.raynal@bootlin.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user