Merge "fix(zynqmp): check return status of pm_get_api_version" into integration

This commit is contained in:
Joanna Farley 2022-11-25 16:25:53 +01:00 committed by TrustedFirmware Code Review
commit 4ccbdd86bc

View file

@ -207,10 +207,16 @@ err:
*/
int32_t pm_setup(void)
{
enum pm_ret_status err;
pm_ipi_init(primary_proc);
pm_get_api_version(&pm_ctx.api_version);
err = pm_get_api_version(&pm_ctx.api_version);
if (err != PM_RET_SUCCESS) {
ERROR("BL31: Failed to read Platform Management API version. "
"Return: %d\n", err);
return -EINVAL;
}
if (pm_ctx.api_version < PM_VERSION) {
ERROR("BL31: Platform Management API version error. Expected: "
"v%d.%d - Found: v%d.%d\n", PM_VERSION_MAJOR,