mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00

This corrects the MISRA violation C2012-15.5: A function should have a single point of exit at the end. Introduced a temporary variable to store the return value to ensure single return for the function. Change-Id: Iffbd8770fd4ff2f2176062469d22961cbaa160b4 Signed-off-by: Maheedhar Bollapalli <maheedharsai.bollapalli@amd.com>
21 lines
427 B
C
21 lines
427 B
C
/*
|
|
* Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <plat/common/platform.h>
|
|
|
|
#include <plat_private.h>
|
|
|
|
int32_t plat_core_pos_by_mpidr(u_register_t mpidr)
|
|
{
|
|
int32_t ret = -1;
|
|
|
|
if (((mpidr & MPIDR_CLUSTER_MASK) == 0U) &&
|
|
((mpidr & MPIDR_CPU_MASK) < PLATFORM_CORE_COUNT)) {
|
|
ret = versal_calc_core_pos(mpidr);
|
|
}
|
|
|
|
return ret;
|
|
}
|