Sfoglia il codice sorgente

asoc: pineapple: Print upd cdc duty cycle register success.

Add a debug print statement to depict a successful
upd cdc duty cycle registration.

Change-Id: I0d80802131479847d60e32e2a7ff13e4fcd7f2d3
Revanth Rajashekar 2 anni fa
parent
commit
c5312ac1be
1 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. 5 1
      asoc/pineapple.c

+ 5 - 1
asoc/pineapple.c

@@ -277,8 +277,12 @@ static void msm_set_upd_config(struct snd_soc_pcm_runtime *rtd)
 	pdata->upd_config.ear_pa_pkd_cfg.ear_pa_disable_pkd_reg_addr |= val2;
 
 	ret = audio_prm_set_cdc_earpa_duty_cycling_req(&pdata->upd_config, 1);
-	if (ret < 0)
+	if (ret < 0) {
 		pr_err_ratelimited("%s: upd cdc duty cycling registration failed\n", __func__);
+		return;
+	}
+
+	pr_debug("%s: upd cdc duty cycling registration done successfully!\n", __func__);
 }
 
 static struct snd_soc_ops msm_common_be_ops = {