msm: eva: print kdata in MSG

For presilicon debugging

Change-Id: I4fc82e1a14d8f623f237c30e3ab63877ddfb97f5
Signed-off-by: George Shen <quic_sqiao@quicinc.com>
This commit is contained in:
George Shen
2022-11-10 10:01:20 -08:00
szülő 816d381554
commit d052ed9da6

Fájl megtekintése

@@ -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)