From 90a967f56052445e4d2cabd8e8e90747c65f5d5b Mon Sep 17 00:00:00 2001 From: Andrei-Liviu Simion Date: Thu, 22 Jan 2015 23:05:36 -0800 Subject: [PATCH] dptx: XDPTX_EDID_SIZE->XDPTX_EDID_BLOCK_SIZE. Signed-off-by: Andrei-Liviu Simion --- .../drivers/dptx/examples/xdptx_example_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/XilinxProcessorIPLib/drivers/dptx/examples/xdptx_example_common.c b/XilinxProcessorIPLib/drivers/dptx/examples/xdptx_example_common.c index d630628d..78b95404 100644 --- a/XilinxProcessorIPLib/drivers/dptx/examples/xdptx_example_common.c +++ b/XilinxProcessorIPLib/drivers/dptx/examples/xdptx_example_common.c @@ -266,7 +266,7 @@ u32 Dptx_StartLink(XDptx *InstancePtr) static void Dptx_StartVideoStream(XDptx *InstancePtr) { u32 Status; - u8 Edid[XDPTX_EDID_SIZE]; + u8 Edid[XDPTX_EDID_BLOCK_SIZE]; /* Set the bits per color. If not set, the default is 6. */ XDptx_CfgMsaSetBpc(InstancePtr, XDPTX_STREAM_ID0, 8); @@ -281,7 +281,7 @@ static void Dptx_StartVideoStream(XDptx *InstancePtr) /* Choose a method for selecting the video mode. There are 3 ways to do this: * 1) Use the preferred timing from the monitor's EDID: - * u8 Edid[XDPTX_EDID_SIZE]; + * u8 Edid[XDPTX_EDID_BLOCK_SIZE]; * XDptx_GetEdid(InstancePtr, Edid); * XDptx_CfgMsaUseEdidPreferredTiming(InstancePtr, XDPTX_STREAM_ID0, Edid); *