diff options
author | Dan Handley <dan.handley@arm.com> | 2014-05-14 17:44:19 +0100 |
---|---|---|
committer | Achin Gupta <achin.gupta@arm.com> | 2014-05-23 15:52:29 +0100 |
commit | 5f0cdb059d7d5c3a8a834074a7f236b85d014dde (patch) | |
tree | 9d249567a958eb8417b08f095813ecde6bb2435b /bl31/aarch64/runtime_exceptions.S | |
parent | 7a9a5f2d22c4f76ae95300fe52129603d29bccc1 (diff) | |
download | platform_external_arm-trusted-firmware-5f0cdb059d7d5c3a8a834074a7f236b85d014dde.tar.gz platform_external_arm-trusted-firmware-5f0cdb059d7d5c3a8a834074a7f236b85d014dde.tar.bz2 platform_external_arm-trusted-firmware-5f0cdb059d7d5c3a8a834074a7f236b85d014dde.zip |
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
Diffstat (limited to 'bl31/aarch64/runtime_exceptions.S')
-rw-r--r-- | bl31/aarch64/runtime_exceptions.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bl31/aarch64/runtime_exceptions.S b/bl31/aarch64/runtime_exceptions.S index 4789b33ba..7e119c58c 100644 --- a/bl31/aarch64/runtime_exceptions.S +++ b/bl31/aarch64/runtime_exceptions.S @@ -32,7 +32,7 @@ #include <asm_macros.S> #include <context.h> #include <interrupt_mgmt.h> -#include <platform.h> +#include <platform_def.h> #include <runtime_svc.h> .globl runtime_exceptions |