浏览代码

msm: eva: print kdata in MSG

For presilicon debugging

Change-Id: I4fc82e1a14d8f623f237c30e3ab63877ddfb97f5
Signed-off-by: George Shen <[email protected]>
George Shen 2 年之前
父节点
当前提交
d052ed9da6
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      msm/eva/cvp_hfi.c

+ 3 - 2
msm/eva/cvp_hfi.c

@@ -2985,13 +2985,14 @@ static void print_msg_hdr(void *hdr)
 {
 	struct cvp_hfi_msg_session_hdr *new_hdr =
 			(struct cvp_hfi_msg_session_hdr *)hdr;
-	dprintk(CVP_HFI, "HFI MSG received: %x %x %x %x %x %x %x\n",
+	dprintk(CVP_HFI, "HFI MSG received: %x %x %x %x %x %x %x %#llx\n",
 			new_hdr->size, new_hdr->packet_type,
 			new_hdr->session_id,
 			new_hdr->client_data.transaction_id,
 			new_hdr->client_data.data1,
 			new_hdr->client_data.data2,
-			new_hdr->error_type);
+			new_hdr->error_type,
+			new_hdr->client_data.kdata);
 }
 
 static int __response_handler(struct iris_hfi_device *device)