Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d69fe47a authored by Casey Piper's avatar Casey Piper
Browse files

mdss: mhl3: update logs for platform independence



Update log messages to print pointers with the
correct format identifier.

Change-Id: I79cdbfacd42cf6245d13ee7a8e75be99af615205
Signed-off-by: default avatarCasey Piper <cpiper@codeaurora.org>
parent 45ea72ba
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -2356,8 +2356,7 @@ int si_mhl_tx_drv_get_edid_fifo_partial_block(struct drv_hw_context *hw_context,
	offset = EDID_BLOCK_SIZE * (hw_context->edid_fifo_block_number & 0x01);
	offset += start;

	MHL_TX_DBG_INFO("%x %x\n", (unsigned int)hw_context,
			(unsigned int)edid_buf);
	MHL_TX_DBG_INFO("%p %p\n", hw_context, edid_buf);
	if (EDID_BLOCK_SIZE == (offset + length))
		hw_context->edid_fifo_block_number++;

@@ -2391,8 +2390,7 @@ int si_mhl_tx_drv_get_edid_fifo_next_block(struct drv_hw_context *hw_context,

	offset = EDID_BLOCK_SIZE * (hw_context->edid_fifo_block_number & 0x01);

	MHL_TX_DBG_INFO("%x %x\n", (unsigned int)hw_context,
			(unsigned int)edid_buf);
	MHL_TX_DBG_INFO("%p %p\n", hw_context, edid_buf);
	hw_context->edid_fifo_block_number++;

#ifdef MANUAL_EDID_FETCH