diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:54 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-17 13:27:27 -0500 |
commit | 807765b0671d17943c9c1923e18d49ace479794e (patch) | |
tree | 7af28ab7f21c7d4d7214718c3d45c6e9f7a3d856 /board/keymile | |
parent | 4cf7f1298970d6ff78c3c8d0a761f33e67f3cb00 (diff) | |
download | u-boot-807765b0671d17943c9c1923e18d49ace479794e.tar.gz |
common: Move device-tree setup functions to fdt_support.h
These functions relate to setting up the device tree for booting the OS.
The fdt_support.h header file supports similar functions, so move these
there.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/keymile')
-rw-r--r-- | board/keymile/km83xx/km83xx.c | 1 | ||||
-rw-r--r-- | board/keymile/kmp204x/kmp204x.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/board/keymile/km83xx/km83xx.c b/board/keymile/km83xx/km83xx.c index feca7be372..23bbdcccac 100644 --- a/board/keymile/km83xx/km83xx.c +++ b/board/keymile/km83xx/km83xx.c @@ -15,6 +15,7 @@ #include <common.h> #include <env.h> +#include <fdt_support.h> #include <init.h> #include <ioports.h> #include <mpc83xx.h> diff --git a/board/keymile/kmp204x/kmp204x.c b/board/keymile/kmp204x/kmp204x.c index 9e1956c8b7..cfb23a53f7 100644 --- a/board/keymile/kmp204x/kmp204x.c +++ b/board/keymile/kmp204x/kmp204x.c @@ -9,6 +9,7 @@ #include <common.h> #include <command.h> #include <env.h> +#include <fdt_support.h> #include <init.h> #include <netdev.h> #include <linux/compiler.h> |