aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/i2c/tpm/tis_atmel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/i2c/tpm/tis_atmel.c')
-rw-r--r--src/drivers/i2c/tpm/tis_atmel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/i2c/tpm/tis_atmel.c b/src/drivers/i2c/tpm/tis_atmel.c
index 793418a96a..74b4830b6a 100644
--- a/src/drivers/i2c/tpm/tis_atmel.c
+++ b/src/drivers/i2c/tpm/tis_atmel.c
@@ -14,13 +14,13 @@
#include <assert.h>
#include <commonlib/endian.h>
+#include <commonlib/helpers.h>
#include <console/console.h>
#include <delay.h>
#include <device/i2c_simple.h>
#include <endian.h>
#include <lib.h>
#include <security/tpm/tis.h>
-#include <stdlib.h>
#include <timer.h>
#include <types.h>
@@ -99,7 +99,7 @@ int tis_sendrecv(const uint8_t *sendbuf, size_t sbuf_size,
return -1;
/* Determine the number of bytes remaining */
- recv_bytes = min(be32_to_cpu(*(uint32_t *)&header->length),
+ recv_bytes = MIN(be32_to_cpu(*(uint32_t *)&header->length),
max_recv_bytes);
/* Determine if there is additional response data */