diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:40:01 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 17:33:33 -0400 |
commit | 4d72caa5b96b71e49b63f98bd8548b194380b544 (patch) | |
tree | 8e636424599794d122342437e21fb601a7c62180 /arch/arm/mach-rockchip | |
parent | 52f24238046ca28085f6de946d0358e5c7c7cbe8 (diff) | |
download | u-boot-4d72caa5b96b71e49b63f98bd8548b194380b544.tar.gz |
common: Drop image.h from common header
Move this uncommon header out of the common header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/mach-rockchip')
-rw-r--r-- | arch/arm/mach-rockchip/misc.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-rockchip/rk3399/rk3399.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-rockchip/spl.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/misc.c b/arch/arm/mach-rockchip/misc.c index 6dbb9bde48..17066bcf8b 100644 --- a/arch/arm/mach-rockchip/misc.c +++ b/arch/arm/mach-rockchip/misc.c @@ -12,6 +12,7 @@ #include <common.h> #include <env.h> #include <dm.h> +#include <hash.h> #include <dm/uclass-internal.h> #include <misc.h> #include <u-boot/crc.h> diff --git a/arch/arm/mach-rockchip/rk3399/rk3399.c b/arch/arm/mach-rockchip/rk3399/rk3399.c index dafa142824..3a51194108 100644 --- a/arch/arm/mach-rockchip/rk3399/rk3399.c +++ b/arch/arm/mach-rockchip/rk3399/rk3399.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <fdt_support.h> #include <spl.h> #include <spl_gpio.h> #include <syscon.h> diff --git a/arch/arm/mach-rockchip/spl.c b/arch/arm/mach-rockchip/spl.c index 0b76af6080..2796e41369 100644 --- a/arch/arm/mach-rockchip/spl.c +++ b/arch/arm/mach-rockchip/spl.c @@ -7,6 +7,7 @@ #include <debug_uart.h> #include <dm.h> #include <hang.h> +#include <image.h> #include <ram.h> #include <spl.h> #include <asm/arch-rockchip/bootrom.h> |