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 /post | |
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 'post')
-rw-r--r-- | post/cpu/mpc83xx/ecc.c | 1 | ||||
-rw-r--r-- | post/drivers/i2c.c | 1 | ||||
-rw-r--r-- | post/drivers/memory.c | 1 | ||||
-rw-r--r-- | post/lib_powerpc/multi.c | 1 | ||||
-rw-r--r-- | post/post.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/post/cpu/mpc83xx/ecc.c b/post/cpu/mpc83xx/ecc.c index 16210c65ab..cc971a8909 100644 --- a/post/cpu/mpc83xx/ecc.c +++ b/post/cpu/mpc83xx/ecc.c @@ -11,6 +11,7 @@ #include <common.h> #include <cpu_func.h> #include <irq_func.h> +#include <log.h> #include <mpc83xx.h> #include <watchdog.h> #include <asm/io.h> diff --git a/post/drivers/i2c.c b/post/drivers/i2c.c index 8b7967cd9d..3b378921fa 100644 --- a/post/drivers/i2c.c +++ b/post/drivers/i2c.c @@ -22,6 +22,7 @@ */ #include <common.h> +#include <log.h> #include <post.h> #include <i2c.h> diff --git a/post/drivers/memory.c b/post/drivers/memory.c index 571394dc63..9cc48b1ccc 100644 --- a/post/drivers/memory.c +++ b/post/drivers/memory.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <log.h> /* Memory test * diff --git a/post/lib_powerpc/multi.c b/post/lib_powerpc/multi.c index 7807eb17ac..f082e4c546 100644 --- a/post/lib_powerpc/multi.c +++ b/post/lib_powerpc/multi.c @@ -6,6 +6,7 @@ #include <common.h> #include <irq_func.h> +#include <log.h> /* * CPU test diff --git a/post/post.c b/post/post.c index 0f977fe245..6687e0b75c 100644 --- a/post/post.c +++ b/post/post.c @@ -7,6 +7,7 @@ #include <common.h> #include <bootstage.h> #include <env.h> +#include <log.h> #include <malloc.h> #include <stdio_dev.h> #include <time.h> |