From: Masahiro Yamada Date: Sun, 7 Jan 2018 03:02:16 +0000 (+0900) Subject: libfdt: remove unnecessary include directive from X-Git-Tag: v4.16-rc1~108^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5fbd55d21e562977773217828fcfa33cc44b16ac;p=thirdparty%2Fkernel%2Flinux.git libfdt: remove unnecessary include directive from is a wrapper of scripts/dtc/libfdt/libfdt.h It should not do more than its job. In fact, libfdt.h depends on fdt.h, and scripts/dtc/libfdt/libfdt.h includes fdt.h already. Trust the work in the upstream DTC project. Signed-off-by: Masahiro Yamada Signed-off-by: Rob Herring --- diff --git a/include/linux/libfdt.h b/include/linux/libfdt.h index 27ba06e5d117e..90ed4ebfa692c 100644 --- a/include/linux/libfdt.h +++ b/include/linux/libfdt.h @@ -3,7 +3,6 @@ #define _INCLUDE_LIBFDT_H_ #include -#include "../../scripts/dtc/libfdt/fdt.h" #include "../../scripts/dtc/libfdt/libfdt.h" #endif /* _INCLUDE_LIBFDT_H_ */