Commit b63539a6 authored by Oded Gabbay's avatar Oded Gabbay
Browse files

habanalabs: print pointer with correct modifier



Use %p instead of %llx for printing pointers.

Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent abe85a9c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3035,8 +3035,8 @@ static int ts_buff_get_kernel_ts_record(struct hl_mmap_mem_buf *buf,

	*pend = requested_offset_record;

	dev_dbg(buf->mmg->dev, "Found available node in TS kernel CB(0x%llx)\n",
						(u64)(uintptr_t)requested_offset_record);
	dev_dbg(buf->mmg->dev, "Found available node in TS kernel CB %p\n",
		requested_offset_record);
	return 0;
}