aboutsummaryrefslogtreecommitdiffstats
path: root/tools/fiptool/fiptool.h
diff options
context:
space:
mode:
authordavidcunado-arm <david.cunado@arm.com>2017-08-03 10:30:04 +0100
committerGitHub <noreply@github.com>2017-08-03 10:30:04 +0100
commit2dfab27a75ff5cdd44609800c557d4447757a19e (patch)
treed0c19107970f54617b856e69d0f75d5dde95455c /tools/fiptool/fiptool.h
parent2f860c7815c648393f0604c872d5b39546da6419 (diff)
parent769fb6b6fefde9a9737e2548522492c99cfdfeac (diff)
downloadplatform_external_arm-trusted-firmware-2dfab27a75ff5cdd44609800c557d4447757a19e.tar.gz
platform_external_arm-trusted-firmware-2dfab27a75ff5cdd44609800c557d4447757a19e.tar.bz2
platform_external_arm-trusted-firmware-2dfab27a75ff5cdd44609800c557d4447757a19e.zip
Merge pull request #1044 from islmit01/im/fix_includes
Fix order of #includes
Diffstat (limited to 'tools/fiptool/fiptool.h')
-rw-r--r--tools/fiptool/fiptool.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/fiptool/fiptool.h b/tools/fiptool/fiptool.h
index 889b0fde5..4b5cdd91f 100644
--- a/tools/fiptool/fiptool.h
+++ b/tools/fiptool/fiptool.h
@@ -7,11 +7,10 @@
#ifndef __FIPTOOL_H__
#define __FIPTOOL_H__
-#include <firmware_image_package.h>
-
#include <stddef.h>
#include <stdint.h>
+#include <firmware_image_package.h>
#include <uuid.h>
#define NELEM(x) (sizeof (x) / sizeof *(x))