From 235284cb5eb5bb622e089c88e2314c24a2f46ba3 Mon Sep 17 00:00:00 2001 From: fbt1709 Date: Mon, 24 Nov 2025 17:51:56 +0800 Subject: [PATCH] fix(performance): Correct the printed CPU MPID value --- tftf/tests/performance_tests/test_psci_latencies.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tftf/tests/performance_tests/test_psci_latencies.c b/tftf/tests/performance_tests/test_psci_latencies.c index b20fe887..0d5036bd 100644 --- a/tftf/tests/performance_tests/test_psci_latencies.c +++ b/tftf/tests/performance_tests/test_psci_latencies.c @@ -171,7 +171,7 @@ test_result_t psci_trigger_peer_cluster_cache_coh(void) /* Turn On the `keep_on CPU` and keep it ON for the baseline data */ ret = tftf_try_cpu_on(target_keep_on_mpid, (uintptr_t) test_target_keep_on_function, 0); if (ret != PSCI_E_SUCCESS) { - tftf_testcase_printf("Failed to turn ON target CPU %x\n", target_mpid); + tftf_testcase_printf("Failed to turn ON target CPU %x\n", target_keep_on_mpid); return TEST_RESULT_FAIL; }