drivers: audio: Close MQ in cxd56 SRC

Closes the message queue file handle when the sample
rate converter is de-initialized.

Signed-off-by: Tobias Johansson <tobias.johansson@sony.com>
This commit is contained in:
Tobias Johansson 2021-11-17 13:40:45 +01:00 committed by Xiang Xiao
parent 3828dd2b11
commit e9e15689d0

View File

@ -529,6 +529,8 @@ int cxd56_src_deinit(void)
file_close(&dump_file_post);
#endif
file_mq_close(&g_src.mq);
return OK;
}