diff options
author | Sean Anderson | 2019-12-17 21:21:54 -0500 |
---|---|---|
committer | Simon Glass | 2020-01-07 16:02:39 -0700 |
commit | 63736e9c9622147672a0782c630f529c92bcb7b5 (patch) | |
tree | efbbb9d9a8c6a51834728566a949abe503d68163 /include/fdt_support.h | |
parent | f6a8c0f4680f2364289c9fc45dabab5f63fd06a0 (diff) |
Include missing headers for fdt_support.h
fdt_support.h is missing declarations for bd_t. Including asm/u-boot.h
pulls in the definition.
Signed-off-by: Sean Anderson <seanga2@gmail.com>
Diffstat (limited to 'include/fdt_support.h')
-rw-r--r-- | include/fdt_support.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/fdt_support.h b/include/fdt_support.h index 2286ea77939..3f4bc643d44 100644 --- a/include/fdt_support.h +++ b/include/fdt_support.h @@ -9,6 +9,7 @@ #ifdef CONFIG_OF_LIBFDT +#include <asm/u-boot.h> #include <linux/libfdt.h> u32 fdt_getprop_u32_default_node(const void *fdt, int off, int cell, |