mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 01:24:27 +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: Ibff3df16b4c591384467771bc7cb316f1773f1ea Signed-off-by: Maheedhar Bollapalli <maheedharsai.bollapalli@amd.com>
21 lines
445 B
C
21 lines
445 B
C
/*
|
|
* Copyright (c) 2015-2018, 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 core_pos = -1;
|
|
|
|
if (((mpidr & MPIDR_CLUSTER_MASK) == 0U) &&
|
|
((mpidr & MPIDR_CPU_MASK) < PLATFORM_CORE_COUNT)) {
|
|
core_pos = (int32_t)zynqmp_calc_core_pos(mpidr);
|
|
}
|
|
|
|
return core_pos;
|
|
}
|