summaryrefslogtreecommitdiff
path: root/bl32
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2014-05-13 16:41:25 +0100
committerSandrine Bailleux <sandrine.bailleux@arm.com>2014-05-13 17:33:01 +0100
commitdb8989d5a507823e7ffe9cab5018481e1491151a (patch)
treec2abbc38909a5e20ffbbc6fdd07201ae03ad2dde /bl32
parent60bc4bbd0bf705f30327e3c37973bcf1e1851110 (diff)
fvp: Use the right implem. of plat_report_exception() in BL3-2
On FVP, the file 'plat/fvp/aarch64/plat_helpers.S' contains an FVP-specific implementation of the function 'plat_report_exception()', which is meant to override the default implementation. However, this file was not included into the BL3-2 image, meaning it was still using the default implementation. This patch fixes the FVP makefile to compile this file in. Change-Id: I3d44b9ec3a9de7e2762e0887d3599b185d3e28d2
Diffstat (limited to 'bl32')
-rw-r--r--bl32/tsp/tsp-fvp.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/bl32/tsp/tsp-fvp.mk b/bl32/tsp/tsp-fvp.mk
index 3bcf439b..5d8a0e34 100644
--- a/bl32/tsp/tsp-fvp.mk
+++ b/bl32/tsp/tsp-fvp.mk
@@ -31,4 +31,5 @@
# TSP source files specific to FVP platform
BL32_SOURCES += plat/common/aarch64/platform_mp_stack.S \
plat/fvp/bl32_plat_setup.c \
- plat/fvp/aarch64/plat_common.c
+ plat/fvp/aarch64/plat_common.c \
+ plat/fvp/aarch64/plat_helpers.S