Browse Source

Revert "asoc: disable pm qos voting in machine driver"

This reverts commit b81a91d45015e184e719a7b2b0888093cca40cfa.

Change-Id: I98a7adc941f626bd467c6ecf7cf1120f1b9d0a33
Signed-off-by: Meng Wang <[email protected]>
Meng Wang 3 years ago
parent
commit
5c96dd01a1
1 changed files with 0 additions and 6 deletions
  1. 0 6
      asoc/waipio.c

+ 0 - 6
asoc/waipio.c

@@ -117,7 +117,6 @@ static struct wcd_mbhc_config wcd_mbhc_cfg = {
 	.moisture_duty_cycle_en = true,
 };
 
-#ifdef PM_QOS_ENABLE
 /* set audio task affinity to core 1 & 2 */
 static const unsigned int audio_core_list[] = {1, 2};
 static cpumask_t audio_cpu_map = CPU_MASK_NONE;
@@ -164,7 +163,6 @@ static void msm_audio_remove_qos_request()
 		kfree(msm_audio_req);
 	}
 }
-#endif
 
 static bool msm_usbc_swap_gnd_mic(struct snd_soc_component *component, bool active)
 {
@@ -1699,10 +1697,8 @@ static int msm_asoc_machine_probe(struct platform_device *pdev)
 
 	is_initial_boot = true;
 
-#ifdef PM_QOS_ENABLE
 	/* Add QoS request for audio tasks */
 	msm_audio_add_qos_request();
-#endif
 
 	return 0;
 err:
@@ -1725,9 +1721,7 @@ static int msm_asoc_machine_remove(struct platform_device *pdev)
 	msm_common_snd_deinit(common_pdata);
 	snd_event_master_deregister(&pdev->dev);
 	snd_soc_unregister_card(card);
-#ifdef PM_QOS_ENABLE
 	msm_audio_remove_qos_request();
-#endif
 
 	return 0;
 }