summaryrefslogtreecommitdiff
path: root/tools/gen_ethaddr_crc.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-01-21 19:19:15 +0900
committerTom Rini <trini@konsulko.com>2018-01-28 12:27:31 -0500
commitd2bf1152c078e7db7ffade193da8cfb1b8430ce0 (patch)
tree5fd34e3e2d14a44c01eab363a7ebafaebd12fc07 /tools/gen_ethaddr_crc.c
parentb0bd96c858afc273b6030a4c19c5074e6163b6f8 (diff)
tools: include necessary headers explicitly
Several host-tools use "bool" type without including <stdbool.h>. This relies on the crappy header inclusion chain. tools/Makefile has the following line: HOST_EXTRACFLAGS += -include $(srctree)/include/libfdt_env.h \ All host-tools are forced to include libfdt_env.h even if they are totally unrelated to FDT. Then, <stdbool.h> is indirectly included as follows: include/libfdt_env.h -> include/linux/types.h -> <stdbool.h> I am fixing this horrible crap. In advance, I need to add necessary include directives explicitly. tools/fdtgrep.c needs more; <fctl.h> for open() and <errno.h> for errno. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Joe Hershberger <joe.hershberger@ni.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/gen_ethaddr_crc.c')
-rw-r--r--tools/gen_ethaddr_crc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/gen_ethaddr_crc.c b/tools/gen_ethaddr_crc.c
index fe9896dca9..8cf86f4835 100644
--- a/tools/gen_ethaddr_crc.c
+++ b/tools/gen_ethaddr_crc.c
@@ -6,6 +6,7 @@
*/
#include <ctype.h>
+#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>