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/ram/rockchip | |
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 'drivers/ram/rockchip')
-rw-r--r-- | drivers/ram/rockchip/dmc-rk3368.c | 1 | ||||
-rw-r--r-- | drivers/ram/rockchip/sdram_px30.c | 1 | ||||
-rw-r--r-- | drivers/ram/rockchip/sdram_rk3128.c | 1 | ||||
-rw-r--r-- | drivers/ram/rockchip/sdram_rk3188.c | 1 | ||||
-rw-r--r-- | drivers/ram/rockchip/sdram_rk3288.c | 1 | ||||
-rw-r--r-- | drivers/ram/rockchip/sdram_rk3328.c | 1 | ||||
-rw-r--r-- | drivers/ram/rockchip/sdram_rk3399.c | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/drivers/ram/rockchip/dmc-rk3368.c b/drivers/ram/rockchip/dmc-rk3368.c index 2d82a176db..8dc4738920 100644 --- a/drivers/ram/rockchip/dmc-rk3368.c +++ b/drivers/ram/rockchip/dmc-rk3368.c @@ -7,6 +7,7 @@ #include <clk.h> #include <dm.h> #include <hang.h> +#include <log.h> #include <dt-bindings/memory/rk3368-dmc.h> #include <dt-structs.h> #include <ram.h> diff --git a/drivers/ram/rockchip/sdram_px30.c b/drivers/ram/rockchip/sdram_px30.c index ac7d96540f..67f494c7f1 100644 --- a/drivers/ram/rockchip/sdram_px30.c +++ b/drivers/ram/rockchip/sdram_px30.c @@ -7,6 +7,7 @@ #include <debug_uart.h> #include <dm.h> #include <init.h> +#include <log.h> #include <ram.h> #include <syscon.h> #include <asm/io.h> diff --git a/drivers/ram/rockchip/sdram_rk3128.c b/drivers/ram/rockchip/sdram_rk3128.c index 8486653c6f..0162955aae 100644 --- a/drivers/ram/rockchip/sdram_rk3128.c +++ b/drivers/ram/rockchip/sdram_rk3128.c @@ -5,6 +5,7 @@ #include <common.h> #include <dm.h> +#include <log.h> #include <ram.h> #include <syscon.h> #include <asm/arch-rockchip/clock.h> diff --git a/drivers/ram/rockchip/sdram_rk3188.c b/drivers/ram/rockchip/sdram_rk3188.c index 4f3ed739fb..cc9bd02c16 100644 --- a/drivers/ram/rockchip/sdram_rk3188.c +++ b/drivers/ram/rockchip/sdram_rk3188.c @@ -13,6 +13,7 @@ #include <errno.h> #include <hang.h> #include <init.h> +#include <log.h> #include <ram.h> #include <regmap.h> #include <syscon.h> diff --git a/drivers/ram/rockchip/sdram_rk3288.c b/drivers/ram/rockchip/sdram_rk3288.c index 23fd7956a7..2e6186d38d 100644 --- a/drivers/ram/rockchip/sdram_rk3288.c +++ b/drivers/ram/rockchip/sdram_rk3288.c @@ -13,6 +13,7 @@ #include <errno.h> #include <hang.h> #include <init.h> +#include <log.h> #include <ram.h> #include <regmap.h> #include <syscon.h> diff --git a/drivers/ram/rockchip/sdram_rk3328.c b/drivers/ram/rockchip/sdram_rk3328.c index 36e0d2e840..f01301068e 100644 --- a/drivers/ram/rockchip/sdram_rk3328.c +++ b/drivers/ram/rockchip/sdram_rk3328.c @@ -8,6 +8,7 @@ #include <dm.h> #include <dt-structs.h> #include <init.h> +#include <log.h> #include <ram.h> #include <regmap.h> #include <syscon.h> diff --git a/drivers/ram/rockchip/sdram_rk3399.c b/drivers/ram/rockchip/sdram_rk3399.c index 7b95c954a6..9d2d3cf510 100644 --- a/drivers/ram/rockchip/sdram_rk3399.c +++ b/drivers/ram/rockchip/sdram_rk3399.c @@ -10,6 +10,7 @@ #include <dm.h> #include <dt-structs.h> #include <init.h> +#include <log.h> #include <ram.h> #include <regmap.h> #include <syscon.h> |