ipc4: handler: add break for unsupported message

Missed break for unsupported SOF_IPC4_MOD_CONFIG_SET & GET

Signed-off-by: Rander Wang <rander.wang@intel.com>
This commit is contained in:
Rander Wang 2021-11-16 15:27:02 +08:00 committed by Liam Girdwood
parent 38ed99ffd4
commit 03e5f29ef0
1 changed files with 3 additions and 0 deletions

View File

@ -601,6 +601,9 @@ static int ipc4_process_module_message(union ipc4_message_header *ipc4)
break;
case SOF_IPC4_MOD_CONFIG_GET:
case SOF_IPC4_MOD_CONFIG_SET:
ret = IPC4_UNAVAILABLE;
tr_info(&ipc_tr, "unsupported module CONFIG_GET");
break;
case SOF_IPC4_MOD_LARGE_CONFIG_GET:
ret = ipc4_get_large_config_module_instance(ipc4);
break;