Merge "Fix coverity defects found on the FPGA port." into integration

This commit is contained in:
Olivier Deprez 2020-04-02 14:38:01 +00:00 committed by TrustedFirmware Code Review
commit 57477bc766
1 changed files with 5 additions and 1 deletions

View File

@ -41,9 +41,13 @@ uintptr_t fpga_sec_entrypoint;
*/
static int fpga_pwr_domain_on(u_register_t mpidr)
{
unsigned int pos = plat_core_pos_by_mpidr(mpidr);
int pos = plat_core_pos_by_mpidr(mpidr);
unsigned long current_mpidr = read_mpidr_el1();
if (pos < 0) {
panic();
}
if (mpidr == current_mpidr) {
return PSCI_E_ALREADY_ON;
}