浏览代码

ASoC: dsp: Fix LPASS clock timeout issue

LPASS set clock time command times out because afe callback
was waking up the incorrect wait queue. Use the appropriate
index instead of the global index for wake up.

CRs-Fixed: 2151551
Change-Id: I2d4f4c477913a9513ffae2992ecf777f7a3ed60d
Signed-off-by: Vignesh Kulothungan <[email protected]>
Vignesh Kulothungan 7 年之前
父节点
当前提交
87f926a612
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      dsp/q6afe.c

+ 2 - 2
dsp/q6afe.c

@@ -1122,7 +1122,7 @@ static int q6afe_svc_set_params_v1(int index, struct mem_mapping_hdr *mem_hdr,
 	svc_set_param->apr_hdr.pkt_size = size;
 	svc_set_param->apr_hdr.src_port = 0;
 	svc_set_param->apr_hdr.dest_port = 0;
-	svc_set_param->apr_hdr.token = IDX_GLOBAL_CFG;
+	svc_set_param->apr_hdr.token = index;
 	svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM;
 	svc_set_param->payload_size = packed_data_size;
 
@@ -1169,7 +1169,7 @@ static int q6afe_svc_set_params_v2(int index, struct mem_mapping_hdr *mem_hdr,
 	svc_set_param->apr_hdr.pkt_size = size;
 	svc_set_param->apr_hdr.src_port = 0;
 	svc_set_param->apr_hdr.dest_port = 0;
-	svc_set_param->apr_hdr.token = IDX_GLOBAL_CFG;
+	svc_set_param->apr_hdr.token = index;
 	svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM_V2;
 	svc_set_param->payload_size = packed_data_size;