diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-03-05 01:20:11 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-05 10:16:28 -0500 |
commit | b08c8c4870831c9315dcae237772238e80035bd5 (patch) | |
tree | c884e2e58c20806a730f9b462ef705d4c258b88c /board/xes | |
parent | e0d20dc1521e74b82dbd69be53a048847798a90a (diff) | |
download | u-boot-b08c8c4870831c9315dcae237772238e80035bd5.tar.gz |
libfdt: move headers to <linux/libfdt.h> and <linux/libfdt_env.h>
Thomas reported U-Boot failed to build host tools if libfdt-devel
package is installed because tools include libfdt headers from
/usr/include/ instead of using internal ones.
This commit moves the header code:
include/libfdt.h -> include/linux/libfdt.h
include/libfdt_env.h -> include/linux/libfdt_env.h
and replaces include directives:
#include <libfdt.h> -> #include <linux/libfdt.h>
#include <libfdt_env.h> -> #include <linux/libfdt_env.h>
Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'board/xes')
-rw-r--r-- | board/xes/common/fsl_8xxx_pci.c | 2 | ||||
-rw-r--r-- | board/xes/xpedite520x/xpedite520x.c | 2 | ||||
-rw-r--r-- | board/xes/xpedite537x/xpedite537x.c | 2 | ||||
-rw-r--r-- | board/xes/xpedite550x/xpedite550x.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/board/xes/common/fsl_8xxx_pci.c b/board/xes/common/fsl_8xxx_pci.c index 62375717f0..45924cdb48 100644 --- a/board/xes/common/fsl_8xxx_pci.c +++ b/board/xes/common/fsl_8xxx_pci.c @@ -11,7 +11,7 @@ #include <asm/fsl_serdes.h> #include <asm/io.h> #include <linux/compiler.h> -#include <libfdt.h> +#include <linux/libfdt.h> #include <fdt_support.h> diff --git a/board/xes/xpedite520x/xpedite520x.c b/board/xes/xpedite520x/xpedite520x.c index 6a3df52391..4b3a46c8cb 100644 --- a/board/xes/xpedite520x/xpedite520x.c +++ b/board/xes/xpedite520x/xpedite520x.c @@ -14,7 +14,7 @@ #include <asm/io.h> #include <asm/cache.h> #include <asm/mmu.h> -#include <libfdt.h> +#include <linux/libfdt.h> #include <fdt_support.h> #include <pca953x.h> diff --git a/board/xes/xpedite537x/xpedite537x.c b/board/xes/xpedite537x/xpedite537x.c index 41419feb17..ae606f5ba7 100644 --- a/board/xes/xpedite537x/xpedite537x.c +++ b/board/xes/xpedite537x/xpedite537x.c @@ -12,7 +12,7 @@ #include <asm/fsl_pci.h> #include <asm/io.h> #include <asm/cache.h> -#include <libfdt.h> +#include <linux/libfdt.h> #include <fdt_support.h> #include <pca953x.h> diff --git a/board/xes/xpedite550x/xpedite550x.c b/board/xes/xpedite550x/xpedite550x.c index 1f05150d0f..c90bb89dae 100644 --- a/board/xes/xpedite550x/xpedite550x.c +++ b/board/xes/xpedite550x/xpedite550x.c @@ -12,7 +12,7 @@ #include <asm/fsl_pci.h> #include <asm/io.h> #include <asm/cache.h> -#include <libfdt.h> +#include <linux/libfdt.h> #include <fdt_support.h> #include <pca953x.h> |