ipc4: fix the compound ipc wait timeout

The number of retries is too small to successfully handle some
compound IPC messages (in particular setting pipeline state to running
in case of multi-core distributed pipeline).

Signed-off-by: Rafal Redzimski <rafal.f.redzimski@intel.com>
This commit is contained in:
Rafal Redzimski 2022-03-15 09:27:02 +01:00 committed by Michal Wasko
parent 2c4e29187d
commit cd0c1f99c2
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ static void ipc_compound_msg_done(uint32_t msg_id, int error)
static int ipc_wait_for_compound_msg(void)
{
int try_count = 10;
int try_count = 30;
int ret = 0;
while (msg_data.delayed_reply) {