diff options
author | Manish Pandey <manish.pandey2@arm.com> | 2020-03-06 14:36:25 +0000 |
---|---|---|
committer | Manish Pandey <manish.pandey2@arm.com> | 2020-03-06 14:36:25 +0000 |
commit | a16bc84560efdbfcd242e6c708992624a76ec7cd (patch) | |
tree | f774c89c88efdf484810c607a3f365b9dd171b6e /bl32 | |
parent | 6e46981f841a5477700485f78956f1ec3c1c1f48 (diff) | |
download | arm-trusted-firmware-a16bc84560efdbfcd242e6c708992624a76ec7cd.tar.gz |
TSP: corrected log information
In CPU resume function, CPU suspend count was printed instead of CPU
resume count.
Signed-off-by: Manish Pandey <manish.pandey2@arm.com>
Change-Id: I0c081dc03a4ccfb2129687f690667c5ceed00a5f
Diffstat (limited to 'bl32')
-rw-r--r-- | bl32/tsp/tsp_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bl32/tsp/tsp_main.c b/bl32/tsp/tsp_main.c index e1d961cc6..9da2f9af9 100644 --- a/bl32/tsp/tsp_main.c +++ b/bl32/tsp/tsp_main.c @@ -273,11 +273,11 @@ tsp_args_t *tsp_cpu_resume_main(uint64_t max_off_pwrlvl, spin_lock(&console_lock); INFO("TSP: cpu 0x%lx resumed. maximum off power level %lld\n", read_mpidr(), max_off_pwrlvl); - INFO("TSP: cpu 0x%lx: %d smcs, %d erets %d cpu suspend requests\n", + INFO("TSP: cpu 0x%lx: %d smcs, %d erets %d cpu resume requests\n", read_mpidr(), tsp_stats[linear_id].smc_count, tsp_stats[linear_id].eret_count, - tsp_stats[linear_id].cpu_suspend_count); + tsp_stats[linear_id].cpu_resume_count); spin_unlock(&console_lock); #endif /* Indicate to the SPD that we have completed this request */ |