fvp: Use the right implem. of plat_report_exception() in BL3-2
authorSandrine Bailleux <sandrine.bailleux@arm.com>
Tue, 13 May 2014 15:41:25 +0000 (16:41 +0100)
committerSandrine Bailleux <sandrine.bailleux@arm.com>
Tue, 13 May 2014 16:33:01 +0000 (17:33 +0100)
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

bl32/tsp/tsp-fvp.mk

index 3bcf439b3a826f417f080375c1d8aa660bd13adb..5d8a0e3449bcfba570761831d0d2880bba922eaa 100644 (file)
@@ -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