Merge "fix(intel): update mailbox SDM printout message" into integration

This commit is contained in:
Mark Dykes 2024-10-17 23:02:41 +02:00 committed by TrustedFirmware Code Review
commit 3eab6c920c

View file

@ -168,7 +168,7 @@ int mailbox_read_response(unsigned int *job_id, uint32_t *response,
}
if (MBOX_RESP_ERR(resp_data) > 0U) {
INFO("Error in response: %x\n", resp_data);
INFO("SDM response: Return Code: 0x%x\n", MBOX_RESP_ERR(resp_data));
return -MBOX_RESP_ERR(resp_data);
}
@ -337,7 +337,7 @@ int mailbox_poll_response(uint32_t job_id, uint32_t urgent, uint32_t *response,
}
if (MBOX_RESP_ERR(resp_data) > 0U) {
INFO("Error in response: %x\n", resp_data);
INFO("SDM response: Return Code: 0x%x\n", MBOX_RESP_ERR(resp_data));
return -MBOX_RESP_ERR(resp_data);
}