diff options
author | danh-arm <dan.handley@arm.com> | 2016-09-19 11:56:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-19 11:56:39 +0100 |
commit | 0980b8ae8f12abacaee231f5ee01288946d6e55c (patch) | |
tree | 413d10c5086b467be995ad3553cf48319f1d22ec | |
parent | 10e3f883e298b70526c3d6b904df2a8ff37683ed (diff) | |
parent | d2e201b4297d71d8c1e9085487eb9e1a4ae90bdd (diff) |
Merge pull request #705 from dp-arm/dp/pmf-macro-rename
Rename `pmf_calc_timestamp_offset` to `pmf_calc_timestamp_addr`
-rw-r--r-- | include/lib/pmf/pmf_asm_macros.S | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/lib/pmf/pmf_asm_macros.S b/include/lib/pmf/pmf_asm_macros.S index 42dcd794..be7338b0 100644 --- a/include/lib/pmf/pmf_asm_macros.S +++ b/include/lib/pmf/pmf_asm_macros.S @@ -34,12 +34,11 @@ #define PMF_TS_SIZE 8 /* - * This macro calculates the offset into the memory - * region where the per-cpu timestamp value is stored - * for the given service name and timestamp id. + * This macro calculates the address of the per-cpu timestamp + * for the given service name and local timestamp id. * Clobbers: x0 - x9 */ - .macro pmf_calc_timestamp_offset _name _tid + .macro pmf_calc_timestamp_addr _name _tid mov x9, x30 bl plat_my_core_pos mov x30, x9 |