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/mailbox | |
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/mailbox')
-rw-r--r-- | drivers/mailbox/k3-sec-proxy.c | 1 | ||||
-rw-r--r-- | drivers/mailbox/mailbox-uclass.c | 1 | ||||
-rw-r--r-- | drivers/mailbox/sandbox-mbox.c | 1 | ||||
-rw-r--r-- | drivers/mailbox/stm32-ipcc.c | 1 | ||||
-rw-r--r-- | drivers/mailbox/tegra-hsp.c | 1 | ||||
-rw-r--r-- | drivers/mailbox/zynqmp-ipi.c | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mailbox/k3-sec-proxy.c b/drivers/mailbox/k3-sec-proxy.c index a560209f03..3f9afaed32 100644 --- a/drivers/mailbox/k3-sec-proxy.c +++ b/drivers/mailbox/k3-sec-proxy.c @@ -7,6 +7,7 @@ */ #include <common.h> +#include <log.h> #include <malloc.h> #include <asm/io.h> #include <dm/device_compat.h> diff --git a/drivers/mailbox/mailbox-uclass.c b/drivers/mailbox/mailbox-uclass.c index 291f5c218e..c972d84608 100644 --- a/drivers/mailbox/mailbox-uclass.c +++ b/drivers/mailbox/mailbox-uclass.c @@ -5,6 +5,7 @@ #include <common.h> #include <dm.h> +#include <log.h> #include <mailbox.h> #include <mailbox-uclass.h> #include <malloc.h> diff --git a/drivers/mailbox/sandbox-mbox.c b/drivers/mailbox/sandbox-mbox.c index 25e23eb05b..19704dd5da 100644 --- a/drivers/mailbox/sandbox-mbox.c +++ b/drivers/mailbox/sandbox-mbox.c @@ -5,6 +5,7 @@ #include <common.h> #include <dm.h> +#include <log.h> #include <mailbox-uclass.h> #include <malloc.h> #include <asm/io.h> diff --git a/drivers/mailbox/stm32-ipcc.c b/drivers/mailbox/stm32-ipcc.c index 13e642ab70..0778eb5225 100644 --- a/drivers/mailbox/stm32-ipcc.c +++ b/drivers/mailbox/stm32-ipcc.c @@ -6,6 +6,7 @@ #include <common.h> #include <clk.h> #include <dm.h> +#include <log.h> #include <mailbox-uclass.h> #include <malloc.h> #include <asm/io.h> diff --git a/drivers/mailbox/tegra-hsp.c b/drivers/mailbox/tegra-hsp.c index 60f6a38321..1d2c979847 100644 --- a/drivers/mailbox/tegra-hsp.c +++ b/drivers/mailbox/tegra-hsp.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <log.h> #include <malloc.h> #include <asm/io.h> #include <dm.h> diff --git a/drivers/mailbox/zynqmp-ipi.c b/drivers/mailbox/zynqmp-ipi.c index 17b46545f5..f206a27a79 100644 --- a/drivers/mailbox/zynqmp-ipi.c +++ b/drivers/mailbox/zynqmp-ipi.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <log.h> #include <asm/io.h> #include <dm.h> #include <mailbox-uclass.h> |