From 5f0cdb059d7d5c3a8a834074a7f236b85d014dde Mon Sep 17 00:00:00 2001 From: Dan Handley Date: Wed, 14 May 2014 17:44:19 +0100 Subject: Split platform.h into separate headers Previously, platform.h contained many declarations and definitions used for different purposes. This file has been split so that: * Platform definitions used by common code that must be defined by the platform are now in platform_def.h. The exact include path is exported through $PLAT_INCLUDES in the platform makefile. * Platform definitions specific to the FVP platform are now in /plat/fvp/fvp_def.h. * Platform API declarations specific to the FVP platform are now in /plat/fvp/fvp_private.h. * The remaining platform API declarations that must be ported by each platform are still in platform.h but this file has been moved to /include/plat/common since this can be shared by all platforms. Change-Id: Ieb3bb22fbab3ee8027413c6b39a783534aee474a --- bl2/bl2.ld.S | 2 +- bl2/bl2_main.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'bl2') diff --git a/bl2/bl2.ld.S b/bl2/bl2.ld.S index 9f02e92c..e348d4fc 100644 --- a/bl2/bl2.ld.S +++ b/bl2/bl2.ld.S @@ -28,7 +28,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include +#include OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT) OUTPUT_ARCH(PLATFORM_LINKER_ARCH) diff --git a/bl2/bl2_main.c b/bl2/bl2_main.c index 81fecd67..55ae3c0e 100644 --- a/bl2/bl2_main.c +++ b/bl2/bl2_main.c @@ -35,6 +35,7 @@ #include #include #include +#include #include #include "bl2_private.h" -- cgit v1.2.3