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/dfu | |
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/dfu')
-rw-r--r-- | drivers/dfu/dfu.c | 1 | ||||
-rw-r--r-- | drivers/dfu/dfu_mmc.c | 1 | ||||
-rw-r--r-- | drivers/dfu/dfu_nand.c | 1 | ||||
-rw-r--r-- | drivers/dfu/dfu_tftp.c | 1 | ||||
-rw-r--r-- | drivers/dfu/dfu_virt.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c index df50196dfda..a298c2c4399 100644 --- a/drivers/dfu/dfu.c +++ b/drivers/dfu/dfu.c @@ -9,6 +9,7 @@ #include <common.h> #include <env.h> #include <errno.h> +#include <log.h> #include <malloc.h> #include <mmc.h> #include <fat.h> diff --git a/drivers/dfu/dfu_mmc.c b/drivers/dfu/dfu_mmc.c index 8cd466f02e5..691d01c7ebd 100644 --- a/drivers/dfu/dfu_mmc.c +++ b/drivers/dfu/dfu_mmc.c @@ -7,6 +7,7 @@ */ #include <common.h> +#include <log.h> #include <malloc.h> #include <errno.h> #include <div64.h> diff --git a/drivers/dfu/dfu_nand.c b/drivers/dfu/dfu_nand.c index 58b94348c95..b8d24d203be 100644 --- a/drivers/dfu/dfu_nand.c +++ b/drivers/dfu/dfu_nand.c @@ -10,6 +10,7 @@ */ #include <common.h> +#include <log.h> #include <malloc.h> #include <errno.h> #include <div64.h> diff --git a/drivers/dfu/dfu_tftp.c b/drivers/dfu/dfu_tftp.c index e5b35bfd5f7..ffae4bb54f8 100644 --- a/drivers/dfu/dfu_tftp.c +++ b/drivers/dfu/dfu_tftp.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <log.h> #include <malloc.h> #include <errno.h> #include <dfu.h> diff --git a/drivers/dfu/dfu_virt.c b/drivers/dfu/dfu_virt.c index ea8c71f100f..62605bcde50 100644 --- a/drivers/dfu/dfu_virt.c +++ b/drivers/dfu/dfu_virt.c @@ -5,6 +5,7 @@ #include <common.h> #include <dfu.h> #include <errno.h> +#include <log.h> #include <malloc.h> int __weak dfu_write_medium_virt(struct dfu_entity *dfu, u64 offset, |