From f7ae49fc4f363a803dab3be078e93ead8e75a8e9 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 10 May 2020 11:40:05 -0600 Subject: common: Drop log.h from common header Move this header out of the common header. Signed-off-by: Simon Glass --- drivers/crypto/ace_sha.c | 1 + drivers/crypto/fsl/error.c | 1 + drivers/crypto/fsl/fsl_blob.c | 1 + drivers/crypto/fsl/fsl_hash.c | 1 + drivers/crypto/fsl/fsl_rsa.c | 1 + drivers/crypto/fsl/jr.c | 1 + drivers/crypto/rsa_mod_exp/mod_exp_sw.c | 1 + 7 files changed, 7 insertions(+) (limited to 'drivers/crypto') diff --git a/drivers/crypto/ace_sha.c b/drivers/crypto/ace_sha.c index b5321ed820..261d3efe84 100644 --- a/drivers/crypto/ace_sha.c +++ b/drivers/crypto/ace_sha.c @@ -5,6 +5,7 @@ */ #include #include "ace_sha.h" +#include #include #ifdef CONFIG_SHA_HW_ACCEL diff --git a/drivers/crypto/fsl/error.c b/drivers/crypto/fsl/error.c index 731c748443..c76574919c 100644 --- a/drivers/crypto/fsl/error.c +++ b/drivers/crypto/fsl/error.c @@ -8,6 +8,7 @@ */ #include +#include #include #include "desc.h" #include "jr.h" diff --git a/drivers/crypto/fsl/fsl_blob.c b/drivers/crypto/fsl/fsl_blob.c index c2059b8b0a..d6bd861251 100644 --- a/drivers/crypto/fsl/fsl_blob.c +++ b/drivers/crypto/fsl/fsl_blob.c @@ -6,6 +6,7 @@ #include #include +#include #include #include #include diff --git a/drivers/crypto/fsl/fsl_hash.c b/drivers/crypto/fsl/fsl_hash.c index e63def8b2d..953deec9ff 100644 --- a/drivers/crypto/fsl/fsl_hash.c +++ b/drivers/crypto/fsl/fsl_hash.c @@ -6,6 +6,7 @@ #include #include +#include #include #include #include "jobdesc.h" diff --git a/drivers/crypto/fsl/fsl_rsa.c b/drivers/crypto/fsl/fsl_rsa.c index 0cb3c6b5f2..ed2a54f6ec 100644 --- a/drivers/crypto/fsl/fsl_rsa.c +++ b/drivers/crypto/fsl/fsl_rsa.c @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include "jobdesc.h" diff --git a/drivers/crypto/fsl/jr.c b/drivers/crypto/fsl/jr.c index 9228149863..e2d9216cfc 100644 --- a/drivers/crypto/fsl/jr.c +++ b/drivers/crypto/fsl/jr.c @@ -7,6 +7,7 @@ #include #include +#include #include #include "fsl_sec.h" #include "jr.h" diff --git a/drivers/crypto/rsa_mod_exp/mod_exp_sw.c b/drivers/crypto/rsa_mod_exp/mod_exp_sw.c index c9b571a461..03b3d61403 100644 --- a/drivers/crypto/rsa_mod_exp/mod_exp_sw.c +++ b/drivers/crypto/rsa_mod_exp/mod_exp_sw.c @@ -7,6 +7,7 @@ #include #include #include +#include #include static int mod_exp_sw(struct udevice *dev, const uint8_t *sig, uint32_t sig_len, -- cgit