diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-06-23 06:57:53 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-10-27 17:52:05 +0000 |
commit | ede8dd0b9c0dcf1a2f1478e5cb4e035c148b9ed1 (patch) | |
tree | 5e508448b1b823ae1025e56b48a495325b7d3b80 /src/drivers/i2c | |
parent | 0edf6a59f8b5ad5dd6911078f349357fd36625ab (diff) |
src/{device,drivers}: Use 'include <stdlib.h>' when appropriate
Also, including <types.h>, is supposed to provide stdint and stddef.
Change-Id: I99918a5a77e759bc7d4192d2c3fd6ad493c70248
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33681
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/drivers/i2c')
-rw-r--r-- | src/drivers/i2c/tpm/cr50.c | 3 | ||||
-rw-r--r-- | src/drivers/i2c/tpm/tis_atmel.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/drivers/i2c/tpm/cr50.c b/src/drivers/i2c/tpm/cr50.c index 3c70b7e6e3..6714bd4a03 100644 --- a/src/drivers/i2c/tpm/cr50.c +++ b/src/drivers/i2c/tpm/cr50.c @@ -29,7 +29,6 @@ #include <arch/early_variables.h> #include <commonlib/endian.h> -#include <stdint.h> #include <string.h> #include <types.h> #include <delay.h> @@ -38,6 +37,8 @@ #include <endian.h> #include <timer.h> #include <security/tpm/tis.h> +#include <stdlib.h> + #include "tpm.h" #define CR50_MAX_BUFSIZE 63 diff --git a/src/drivers/i2c/tpm/tis_atmel.c b/src/drivers/i2c/tpm/tis_atmel.c index bfc25c4100..42df292615 100644 --- a/src/drivers/i2c/tpm/tis_atmel.c +++ b/src/drivers/i2c/tpm/tis_atmel.c @@ -13,7 +13,6 @@ */ #include <arch/early_variables.h> -#include <stdint.h> #include <assert.h> #include <commonlib/endian.h> #include <console/console.h> @@ -22,7 +21,9 @@ #include <endian.h> #include <lib.h> #include <security/tpm/tis.h> +#include <stdlib.h> #include <timer.h> +#include <types.h> #define RECV_TIMEOUT (1 * 1000) /* 1 second */ #define XMIT_TIMEOUT (1 * 1000) /* 1 second */ |