Browse Source

dsp: q6afe: Add check for DC detection registration

Check if speaker protection is enabled before registering for
DC detection events.

CRs-Fixed: 2244131
Change-Id: If2f9f777534ee5fe9024ba1080d0b73d3f750159
Signed-off-by: Vignesh Kulothungan <[email protected]>
Vignesh Kulothungan 6 years ago
parent
commit
0ffc608139
1 changed files with 5 additions and 2 deletions
  1. 5 2
      dsp/q6afe.c

+ 5 - 2
dsp/q6afe.c

@@ -1796,8 +1796,11 @@ static void afe_send_cal_spkr_prot_tx(int port_id)
 	}
 	mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
 
-	/* Register for DC detection event */
-	afe_spkr_prot_reg_event_cfg(port_id);
+	/* Register for DC detection event if speaker protection is enabled */
+	if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
+		(this_afe.vi_tx_port == port_id)) {
+		afe_spkr_prot_reg_event_cfg(port_id);
+	}
 }
 
 static void afe_send_cal_spkr_prot_rx(int port_id)