diff options
author | Dan Handley <dan.handley@arm.com> | 2014-08-01 17:58:27 +0100 |
---|---|---|
committer | Dan Handley <dan.handley@arm.com> | 2014-08-14 11:25:41 +0100 |
commit | da0af78aa230d3a873923e05643071f761f593e2 (patch) | |
tree | 588578077360fee02317ea540156c25ccaa51ffb /bl32/tsp/tsp_interrupt.c | |
parent | e98f414b2f54f6ff2eec54656d032bfc293b6b23 (diff) | |
download | platform_external_arm-trusted-firmware-da0af78aa230d3a873923e05643071f761f593e2.tar.gz platform_external_arm-trusted-firmware-da0af78aa230d3a873923e05643071f761f593e2.tar.bz2 platform_external_arm-trusted-firmware-da0af78aa230d3a873923e05643071f761f593e2.zip |
Move TSP private declarations into separate header
Move the TSP private declarations out of tsp.h and into a new
header, tsp_private.h. This clarifies the TSP interface to the TSPD.
Change-Id: I39af346eeba3350cadcac56c02d97a5cb978c28b
Diffstat (limited to 'bl32/tsp/tsp_interrupt.c')
-rw-r--r-- | bl32/tsp/tsp_interrupt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bl32/tsp/tsp_interrupt.c b/bl32/tsp/tsp_interrupt.c index 65c581f65..3ae54932c 100644 --- a/bl32/tsp/tsp_interrupt.c +++ b/bl32/tsp/tsp_interrupt.c @@ -32,9 +32,10 @@ #include <assert.h> #include <debug.h> #include <gic_v2.h> -#include <tsp.h> #include <platform.h> #include <platform_def.h> +#include <tsp.h> +#include "tsp_private.h" /******************************************************************************* * This function updates the TSP statistics for FIQs handled synchronously i.e |