From 2a4b4b71ba8a14148708719077d80889faa6f47b Mon Sep 17 00:00:00 2001 From: Isla Mitchell Date: Tue, 11 Jul 2017 14:54:08 +0100 Subject: Fix order of #includes This fix modifies the order of system includes to meet the ARM TF coding standard. There are some exceptions in order to retain header groupings, minimise changes to imported headers, and where there are headers within the #if and #ifndef statements. Change-Id: I65085a142ba6a83792b26efb47df1329153f1624 Signed-off-by: Isla Mitchell --- bl1/aarch64/bl1_exceptions.S | 2 +- bl1/bl1_fwu.c | 2 +- bl1/bl1_main.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'bl1') diff --git a/bl1/aarch64/bl1_exceptions.S b/bl1/aarch64/bl1_exceptions.S index b0902fd5..eb98ffa0 100644 --- a/bl1/aarch64/bl1_exceptions.S +++ b/bl1/aarch64/bl1_exceptions.S @@ -6,8 +6,8 @@ #include #include -#include #include +#include #include /* ----------------------------------------------------------------------------- diff --git a/bl1/bl1_fwu.c b/bl1/bl1_fwu.c index 8dfc55f6..07a7fc81 100644 --- a/bl1/bl1_fwu.c +++ b/bl1/bl1_fwu.c @@ -4,8 +4,8 @@ * SPDX-License-Identifier: BSD-3-Clause */ -#include #include +#include #include #include #include diff --git a/bl1/bl1_main.c b/bl1/bl1_main.c index fa4f3a4c..821b6a35 100644 --- a/bl1/bl1_main.c +++ b/bl1/bl1_main.c @@ -17,8 +17,8 @@ #include #include #include -#include "bl1_private.h" #include +#include "bl1_private.h" /* BL1 Service UUID */ DEFINE_SVC_UUID(bl1_svc_uid, -- cgit v1.2.3