diff options
author | Peter Robinson <pbrobinson@gmail.com> | 2015-12-09 07:15:33 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-12-13 20:22:00 -0500 |
commit | 69bf2d2fafe64349be3c3ef1256e3c68f812bb25 (patch) | |
tree | 02559cee8122744172cace201fd9c04102766d47 | |
parent | 6463fd8f952df9e4bb448f0aff5d16873f8dfdb2 (diff) | |
download | u-boot-imx-69bf2d2fafe64349be3c3ef1256e3c68f812bb25.zip u-boot-imx-69bf2d2fafe64349be3c3ef1256e3c68f812bb25.tar.gz u-boot-imx-69bf2d2fafe64349be3c3ef1256e3c68f812bb25.tar.bz2 |
tools: env: include compiler.h
With gcc 5.2 and later we get a bunch of "error: unknown type name" for
'uint8_t', 'uint32_t' and friends.
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
-rw-r--r-- | tools/env/fw_env.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c index ba11f77..39f7333 100644 --- a/tools/env/fw_env.c +++ b/tools/env/fw_env.c @@ -10,6 +10,7 @@ #define _GNU_SOURCE +#include <compiler.h> #include <errno.h> #include <env_flags.h> #include <fcntl.h> |