diff options
author | Simon Glass | 2020-05-10 11:40:05 -0600 |
---|---|---|
committer | Tom Rini | 2020-05-18 21:19:18 -0400 |
commit | f7ae49fc4f363a803dab3be078e93ead8e75a8e9 (patch) | |
tree | a40dc0c2d47875a8b069c8704808e2dc8f9db5fa /drivers/dma | |
parent | 3c7dded8e179ee213c8267c892720b84a7a59fd5 (diff) |
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/dma')
-rw-r--r-- | drivers/dma/bcm6348-iudma.c | 1 | ||||
-rw-r--r-- | drivers/dma/dma-uclass.c | 1 | ||||
-rw-r--r-- | drivers/dma/sandbox-dma-test.c | 1 | ||||
-rw-r--r-- | drivers/dma/ti/k3-udma.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/drivers/dma/bcm6348-iudma.c b/drivers/dma/bcm6348-iudma.c index 70bdb650711..cce0c611a8d 100644 --- a/drivers/dma/bcm6348-iudma.c +++ b/drivers/dma/bcm6348-iudma.c @@ -20,6 +20,7 @@ #include <cpu_func.h> #include <dm.h> #include <dma-uclass.h> +#include <log.h> #include <malloc.h> #include <memalign.h> #include <net.h> diff --git a/drivers/dma/dma-uclass.c b/drivers/dma/dma-uclass.c index d2b0b63ecd5..8cbb3640427 100644 --- a/drivers/dma/dma-uclass.c +++ b/drivers/dma/dma-uclass.c @@ -12,6 +12,7 @@ #include <common.h> #include <cpu_func.h> #include <dm.h> +#include <log.h> #include <malloc.h> #include <asm/cache.h> #include <dm/read.h> diff --git a/drivers/dma/sandbox-dma-test.c b/drivers/dma/sandbox-dma-test.c index 234a7d2134d..838596b24b6 100644 --- a/drivers/dma/sandbox-dma-test.c +++ b/drivers/dma/sandbox-dma-test.c @@ -9,6 +9,7 @@ #include <common.h> #include <dm.h> +#include <log.h> #include <malloc.h> #include <dm/read.h> #include <dma-uclass.h> diff --git a/drivers/dma/ti/k3-udma.c b/drivers/dma/ti/k3-udma.c index 5b11f240fea..299e707adcf 100644 --- a/drivers/dma/ti/k3-udma.c +++ b/drivers/dma/ti/k3-udma.c @@ -7,6 +7,7 @@ #include <common.h> #include <cpu_func.h> +#include <log.h> #include <asm/cache.h> #include <asm/io.h> #include <asm/bitops.h> |