From d052ed9da6f77f9ccd571f04ab8cbeec1716ad19 Mon Sep 17 00:00:00 2001 From: George Shen Date: Thu, 10 Nov 2022 10:01:20 -0800 Subject: [PATCH] msm: eva: print kdata in MSG For presilicon debugging Change-Id: I4fc82e1a14d8f623f237c30e3ab63877ddfb97f5 Signed-off-by: George Shen --- msm/eva/cvp_hfi.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/msm/eva/cvp_hfi.c b/msm/eva/cvp_hfi.c index 3504761448..822235aa1c 100644 --- a/msm/eva/cvp_hfi.c +++ b/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)