diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-05-28 08:54:42 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-06-02 07:42:32 +0000 |
commit | 0c154af2175fcb05bffa4ccad11c40366f5417e7 (patch) | |
tree | 3779418baad8ad97239acddc24a09110cc1f3b6a /src/security | |
parent | 48378e1f8d132a3d3bdbb7b1eac5c769c273e6e1 (diff) |
src: Remove redundant includes
<types.h> is supposed to provide <commonlib/bsd/cb_err.h>,
<stdbool.h>,<stdint.h> and <stddef.h>. So remove those includes
each time when <types.h> is included.
Change-Id: I886f02255099f3005852a2e6095b21ca86a940ed
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41817
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/security')
-rw-r--r-- | src/security/tpm/tss.h | 1 | ||||
-rw-r--r-- | src/security/tpm/tss/tcg-2.0/tss_structures.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/security/tpm/tss.h b/src/security/tpm/tss.h index f644e3e7e7..4a8206d056 100644 --- a/src/security/tpm/tss.h +++ b/src/security/tpm/tss.h @@ -9,7 +9,6 @@ #ifndef TSS_H_ #define TSS_H_ -#include <stdint.h> #include <types.h> #include <security/tpm/tss/common/tss_common.h> diff --git a/src/security/tpm/tss/tcg-2.0/tss_structures.h b/src/security/tpm/tss/tcg-2.0/tss_structures.h index f8c6012990..1c7aa4b48f 100644 --- a/src/security/tpm/tss/tcg-2.0/tss_structures.h +++ b/src/security/tpm/tss/tcg-2.0/tss_structures.h @@ -7,7 +7,6 @@ * This file includes a subset of definitions of TPM protocol version 2.x * constants and structures needed for functions used in coreboot. */ -#include <stdint.h> #include <types.h> #include "../common/tss_common.h" |