summaryrefslogtreecommitdiff
path: root/bl32
diff options
context:
space:
mode:
authorDan Handley <dan.handley@arm.com>2014-05-27 16:17:21 +0100
committerDan Handley <dan.handley@arm.com>2014-05-27 16:17:21 +0100
commit9865ac15765f260069047c0e7c56623eb1a70b9a (patch)
treef574c9be9dc54b90430ddfb1bd5dfc39a58b9cfc /bl32
parent0ad469110437196cfbb781b30233d62e2320f694 (diff)
Further renames of platform porting functions
Rename the ic_* platform porting functions to plat_ic_* to be consistent with the other functions in platform.h. Also rename bl31_get_next_image_info() to bl31_plat_get_next_image_ep_info() and remove the duplicate declaration in bl31.h. Change-Id: I4851842069d3cff14c0a468daacc0a891a7ede84
Diffstat (limited to 'bl32')
-rw-r--r--bl32/tsp/tsp_interrupt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bl32/tsp/tsp_interrupt.c b/bl32/tsp/tsp_interrupt.c
index ac45d7af..4a4b877e 100644
--- a/bl32/tsp/tsp_interrupt.c
+++ b/bl32/tsp/tsp_interrupt.c
@@ -82,7 +82,7 @@ int32_t tsp_fiq_handler()
* secure physical generic timer interrupt in which case, handle it.
* Otherwise throw this interrupt at the EL3 firmware.
*/
- id = ic_get_pending_interrupt_id();
+ id = plat_ic_get_pending_interrupt_id();
/* TSP can only handle the secure physical timer interrupt */
if (id != IRQ_SEC_PHY_TIMER)
@@ -92,10 +92,10 @@ int32_t tsp_fiq_handler()
* Handle the interrupt. Also sanity check if it has been preempted by
* another secure interrupt through an assertion.
*/
- id = ic_acknowledge_interrupt();
+ id = plat_ic_acknowledge_interrupt();
assert(id == IRQ_SEC_PHY_TIMER);
tsp_generic_timer_handler();
- ic_end_of_interrupt(id);
+ plat_ic_end_of_interrupt(id);
/* Update the statistics and print some messages */
tsp_stats[linear_id].fiq_count++;