st-hal: fix session back to active when disabling capture usecase
When va concurrency is not allowed for audio capture, if there
are two concurrent active capture usecases and one of them gets
disabled, but va concurrency is still not allowed, then va
session should keep in paused state.
Also, unexpected pause and resume can break the path of
remaining audio capture usecase.
Remove the check of cached concurrency flag to fix it.
Change-Id: I9b64e0c2faab37b0bcc78288de7516cf8996d66f
diff --git a/sound_trigger_hw.c b/sound_trigger_hw.c
index f677147..66526f8 100644
--- a/sound_trigger_hw.c
+++ b/sound_trigger_hw.c
@@ -839,7 +839,7 @@
* by audio capture usecase, so need to do session pause->resume
* to resume tx path.
*/
- if (!conc_allowed && stdev->session_allowed) {
+ if (!conc_allowed) {
list_for_each(p_ses_node, &stdev->sound_model_list) {
p_ses = node_to_item(p_ses_node, st_session_t, list_node);
st_session_pause(p_ses);