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 /board/samsung | |
parent | 3c7dded8e179ee213c8267c892720b84a7a59fd5 (diff) | |
download | u-boot-f7ae49fc4f363a803dab3be078e93ead8e75a8e9.tar.gz |
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 'board/samsung')
-rw-r--r-- | board/samsung/arndale/arndale.c | 1 | ||||
-rw-r--r-- | board/samsung/common/board.c | 1 | ||||
-rw-r--r-- | board/samsung/common/exynos5-dt.c | 1 | ||||
-rw-r--r-- | board/samsung/goni/goni.c | 1 | ||||
-rw-r--r-- | board/samsung/odroid/odroid.c | 1 | ||||
-rw-r--r-- | board/samsung/smdkv310/smdkv310.c | 1 | ||||
-rw-r--r-- | board/samsung/trats/trats.c | 1 | ||||
-rw-r--r-- | board/samsung/trats2/trats2.c | 1 | ||||
-rw-r--r-- | board/samsung/universal_c210/universal.c | 1 |
9 files changed, 9 insertions, 0 deletions
diff --git a/board/samsung/arndale/arndale.c b/board/samsung/arndale/arndale.c index 9abad3f824..7a8e57b6cc 100644 --- a/board/samsung/arndale/arndale.c +++ b/board/samsung/arndale/arndale.c @@ -6,6 +6,7 @@ #include <common.h> #include <cpu_func.h> #include <init.h> +#include <log.h> #include <usb.h> #include <asm/gpio.h> #include <asm/arch/pinmux.h> diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c index c54de9fc12..7f7fb070f6 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -11,6 +11,7 @@ #include <fdtdec.h> #include <hang.h> #include <init.h> +#include <log.h> #include <net.h> #include <spi.h> #include <tmu.h> diff --git a/board/samsung/common/exynos5-dt.c b/board/samsung/common/exynos5-dt.c index eef46b0dc4..69aa2120e1 100644 --- a/board/samsung/common/exynos5-dt.c +++ b/board/samsung/common/exynos5-dt.c @@ -8,6 +8,7 @@ #include <dwc3-uboot.h> #include <env.h> #include <fdtdec.h> +#include <log.h> #include <asm/io.h> #include <errno.h> #include <i2c.h> diff --git a/board/samsung/goni/goni.c b/board/samsung/goni/goni.c index a900ad1476..9639f9a306 100644 --- a/board/samsung/goni/goni.c +++ b/board/samsung/goni/goni.c @@ -7,6 +7,7 @@ #include <common.h> #include <init.h> +#include <log.h> #include <asm/gpio.h> #include <asm/arch/mmc.h> #include <dm.h> diff --git a/board/samsung/odroid/odroid.c b/board/samsung/odroid/odroid.c index 9aa97f0f2c..7d7e722892 100644 --- a/board/samsung/odroid/odroid.c +++ b/board/samsung/odroid/odroid.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <log.h> #include <asm/arch/pinmux.h> #include <asm/arch/power.h> #include <asm/arch/clock.h> diff --git a/board/samsung/smdkv310/smdkv310.c b/board/samsung/smdkv310/smdkv310.c index 9b6502386e..0a5773676d 100644 --- a/board/samsung/smdkv310/smdkv310.c +++ b/board/samsung/smdkv310/smdkv310.c @@ -5,6 +5,7 @@ #include <common.h> #include <init.h> +#include <log.h> #include <net.h> #include <asm/gpio.h> #include <asm/io.h> diff --git a/board/samsung/trats/trats.c b/board/samsung/trats/trats.c index ec85f707c1..b01c93639f 100644 --- a/board/samsung/trats/trats.c +++ b/board/samsung/trats/trats.c @@ -9,6 +9,7 @@ #include <common.h> #include <env.h> #include <lcd.h> +#include <log.h> #include <asm/io.h> #include <asm/gpio.h> #include <asm/arch/cpu.h> diff --git a/board/samsung/trats2/trats2.c b/board/samsung/trats2/trats2.c index 84ff936e4b..ad5dea7307 100644 --- a/board/samsung/trats2/trats2.c +++ b/board/samsung/trats2/trats2.c @@ -7,6 +7,7 @@ #include <common.h> #include <lcd.h> +#include <log.h> #include <asm/gpio.h> #include <asm/arch/pinmux.h> #include <asm/arch/power.h> diff --git a/board/samsung/universal_c210/universal.c b/board/samsung/universal_c210/universal.c index ed9c5b50d9..c56a87b083 100644 --- a/board/samsung/universal_c210/universal.c +++ b/board/samsung/universal_c210/universal.c @@ -7,6 +7,7 @@ #include <common.h> #include <env.h> +#include <log.h> #include <spi.h> #include <lcd.h> #include <asm/io.h> |