ASoC: mbhc: Fix audio mute for special headset
MICBIAS is disabled extra time during playback session resulting in mclk also being disabled. This results in slimbus overflow and audio mute. This can be fixed by checking whether device connected is special headset before disabling micbias during report_plug so that micbias is not disabled again. CRs-Fixed: 2056268 Change-Id: Iab94ca2d6a3d69a5fa122da2c4f1e8d42ce75155 Signed-off-by: Vatsal Bucha <vbucha@codeaurora.org>
This commit is contained in:
parent
de207d8feb
commit
267f48418a
1 changed files with 2 additions and 1 deletions
|
@ -633,7 +633,8 @@ static void wcd_mbhc_report_plug(struct wcd_mbhc *mbhc, int insertion,
|
|||
jack_type == SND_JACK_LINEOUT) &&
|
||||
(mbhc->hph_status && mbhc->hph_status != jack_type)) {
|
||||
|
||||
if (mbhc->micbias_enable) {
|
||||
if (mbhc->micbias_enable &&
|
||||
mbhc->hph_status == SND_JACK_HEADSET) {
|
||||
if (mbhc->mbhc_cb->mbhc_micbias_control)
|
||||
mbhc->mbhc_cb->mbhc_micbias_control(
|
||||
codec, MIC_BIAS_2,
|
||||
|
|
Loading…
Add table
Reference in a new issue