dsp: fix to race condition in voice call mute command handling.

Apply the cached value of device mute setting to dsp,
after voc state moves to RUN.

Change-Id: I82bc9ab2d49a199f0277b1694cd00311eddd6115
Signed-off-by: Vangala, Amarnath <avangala@codeaurora.org>
This commit is contained in:
Vangala, Amarnath
2020-07-07 20:50:44 +05:30
parent 848466a9cc
commit d6093c7f6c

View File

@@ -7204,6 +7204,16 @@ int voc_enable_device(uint32_t session_id)
goto done; goto done;
} }
v->voc_state = VOC_RUN; v->voc_state = VOC_RUN;
if (v->lch_mode == 0) {
pr_debug("%s: dev_mute = %d, ramp_duration = %d ms\n",
__func__, v->dev_rx.dev_mute,
v->dev_rx.dev_mute_ramp_duration_ms);
ret = voice_send_device_mute_cmd(v,
VSS_IVOLUME_DIRECTION_RX,
v->dev_rx.dev_mute,
v->dev_rx.dev_mute_ramp_duration_ms);
}
} else { } else {
pr_debug("%s: called in voc state=%d, No_OP\n", pr_debug("%s: called in voc state=%d, No_OP\n",
__func__, v->voc_state); __func__, v->voc_state);