mirror of https://github.com/thesofproject/sof.git
west.yml: upgrade Zephyr revision - update IPC4 ipc_platform_send_msg
During last changes in Zephyr that implemented power transition for the IPC Device, signature of the intel_adsp_ipc_send_message had changed and now returns negative int error codes (previously bool on success). Updated single function reference in SOF ipc_platform_send_msg(). Implementation had not changed as the function may return only -EBUSY error code until the Zephyr Device Power Management option is disabled. Signed-off-by: Andrey Borisovich <andrey.borisovich@intel.com>
This commit is contained in:
parent
4a0443812b
commit
73cd960e0e
|
@ -169,11 +169,7 @@ int ipc_platform_send_msg(const struct ipc_msg *msg)
|
|||
/* prepare the message and copy to mailbox */
|
||||
struct ipc_cmd_hdr *hdr = ipc_prepare_to_send(msg);
|
||||
|
||||
if (!intel_adsp_ipc_send_message(INTEL_ADSP_IPC_HOST_DEV, hdr->pri, hdr->ext))
|
||||
/* IPC device is busy with something else */
|
||||
return -EBUSY;
|
||||
|
||||
return 0;
|
||||
return intel_adsp_ipc_send_message(INTEL_ADSP_IPC_HOST_DEV, hdr->pri, hdr->ext);
|
||||
}
|
||||
|
||||
void ipc_platform_send_msg_direct(const struct ipc_msg *msg)
|
||||
|
|
Loading…
Reference in New Issue