diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:40:05 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 21:19:18 -0400 |
commit | f7ae49fc4f363a803dab3be078e93ead8e75a8e9 (patch) | |
tree | a40dc0c2d47875a8b069c8704808e2dc8f9db5fa /drivers/tpm | |
parent | 3c7dded8e179ee213c8267c892720b84a7a59fd5 (diff) | |
download | u-boot-f7ae49fc4f363a803dab3be078e93ead8e75a8e9.tar.gz u-boot-f7ae49fc4f363a803dab3be078e93ead8e75a8e9.tar.bz2 u-boot-f7ae49fc4f363a803dab3be078e93ead8e75a8e9.zip |
common: Drop log.h from common header
Move this header out of the common header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/tpm')
-rw-r--r-- | drivers/tpm/cr50_i2c.c | 1 | ||||
-rw-r--r-- | drivers/tpm/tpm-uclass.c | 1 | ||||
-rw-r--r-- | drivers/tpm/tpm2_ftpm_tee.c | 1 | ||||
-rw-r--r-- | drivers/tpm/tpm_tis_infineon.c | 1 | ||||
-rw-r--r-- | drivers/tpm/tpm_tis_lpc.c | 1 | ||||
-rw-r--r-- | drivers/tpm/tpm_tis_st33zp24_i2c.c | 1 | ||||
-rw-r--r-- | drivers/tpm/tpm_tis_st33zp24_spi.c | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/drivers/tpm/cr50_i2c.c b/drivers/tpm/cr50_i2c.c index b67051af26..026adbd737 100644 --- a/drivers/tpm/cr50_i2c.c +++ b/drivers/tpm/cr50_i2c.c @@ -11,6 +11,7 @@ #include <dm.h> #include <i2c.h> #include <irq.h> +#include <log.h> #include <spl.h> #include <tpm-v2.h> #include <asm/gpio.h> diff --git a/drivers/tpm/tpm-uclass.c b/drivers/tpm/tpm-uclass.c index 71d5807006..19c0502d87 100644 --- a/drivers/tpm/tpm-uclass.c +++ b/drivers/tpm/tpm-uclass.c @@ -6,6 +6,7 @@ #include <common.h> #include <dm.h> +#include <log.h> #include <linux/unaligned/be_byteshift.h> #include <tpm-v1.h> #include <tpm-v2.h> diff --git a/drivers/tpm/tpm2_ftpm_tee.c b/drivers/tpm/tpm2_ftpm_tee.c index 4b79d4ada0..3197e0ebcd 100644 --- a/drivers/tpm/tpm2_ftpm_tee.c +++ b/drivers/tpm/tpm2_ftpm_tee.c @@ -15,6 +15,7 @@ #include <common.h> #include <dm.h> +#include <log.h> #include <tpm-v2.h> #include <tee.h> diff --git a/drivers/tpm/tpm_tis_infineon.c b/drivers/tpm/tpm_tis_infineon.c index b5fe43ee50..b007c7ec6f 100644 --- a/drivers/tpm/tpm_tis_infineon.c +++ b/drivers/tpm/tpm_tis_infineon.c @@ -23,6 +23,7 @@ #include <dm.h> #include <fdtdec.h> #include <i2c.h> +#include <log.h> #include <tpm-v1.h> #include <linux/errno.h> #include <linux/compiler.h> diff --git a/drivers/tpm/tpm_tis_lpc.c b/drivers/tpm/tpm_tis_lpc.c index 30194bce07..da4269a56e 100644 --- a/drivers/tpm/tpm_tis_lpc.c +++ b/drivers/tpm/tpm_tis_lpc.c @@ -14,6 +14,7 @@ #include <common.h> #include <dm.h> +#include <log.h> #include <mapmem.h> #include <tpm-v1.h> #include <asm/io.h> diff --git a/drivers/tpm/tpm_tis_st33zp24_i2c.c b/drivers/tpm/tpm_tis_st33zp24_i2c.c index 0d380375eb..c8f8265813 100644 --- a/drivers/tpm/tpm_tis_st33zp24_i2c.c +++ b/drivers/tpm/tpm_tis_st33zp24_i2c.c @@ -16,6 +16,7 @@ #include <dm.h> #include <fdtdec.h> #include <i2c.h> +#include <log.h> #include <tpm-v1.h> #include <errno.h> #include <linux/types.h> diff --git a/drivers/tpm/tpm_tis_st33zp24_spi.c b/drivers/tpm/tpm_tis_st33zp24_spi.c index f6087e7633..8e7b297fe2 100644 --- a/drivers/tpm/tpm_tis_st33zp24_spi.c +++ b/drivers/tpm/tpm_tis_st33zp24_spi.c @@ -15,6 +15,7 @@ #include <common.h> #include <dm.h> #include <fdtdec.h> +#include <log.h> #include <spi.h> #include <tpm-v1.h> #include <errno.h> |