aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Sakkinen <[email protected]>2019-02-08 18:30:59 +0200
committerJarkko Sakkinen <[email protected]>2019-02-13 09:47:00 +0200
commit442601e87a4769a8daba4976ec3afa5222ca211d (patch)
tree4f8bc44d058a78ed0c00e56dc8cfda41af356eb0
parentf5595f5baa30e009bf54d0d7653a9a0cc465be60 (diff)
tpm/tpm_i2c_atmel: Return -E2BIG when the transfer is incomplete
Return -E2BIG when the transfer is incomplete. The upper layer does not retry, so not doing that is incorrect behaviour. Cc: [email protected] Fixes: a2871c62e186 ("tpm: Add support for Atmel I2C TPMs") Signed-off-by: Jarkko Sakkinen <[email protected]> Reviewed-by: Stefan Berger <[email protected]> Reviewed-by: Jerry Snitselaar <[email protected]>
-rw-r--r--drivers/char/tpm/tpm_i2c_atmel.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/char/tpm/tpm_i2c_atmel.c b/drivers/char/tpm/tpm_i2c_atmel.c
index 32a8e27c5382..cc4e642d3180 100644
--- a/drivers/char/tpm/tpm_i2c_atmel.c
+++ b/drivers/char/tpm/tpm_i2c_atmel.c
@@ -69,6 +69,10 @@ static int i2c_atmel_send(struct tpm_chip *chip, u8 *buf, size_t len)
if (status < 0)
return status;
+ /* The upper layer does not support incomplete sends. */
+ if (status != len)
+ return -E2BIG;
+
return 0;
}