From 43e9211d20fdabfc6827b7379184145e7a4b04b9 Mon Sep 17 00:00:00 2001 From: Andrei-Liviu Simion Date: Mon, 12 Jan 2015 20:52:16 -0800 Subject: [PATCH] video_common: edid: XVID_VM_NUM_SUPPORT->XVID_VM_NUM_SUPPORTED. Signed-off-by: Andrei-Liviu Simion --- .../drivers/video_common/examples/xedid_print_example.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XilinxProcessorIPLib/drivers/video_common/examples/xedid_print_example.c b/XilinxProcessorIPLib/drivers/video_common/examples/xedid_print_example.c index ba9087e7..107ecc20 100644 --- a/XilinxProcessorIPLib/drivers/video_common/examples/xedid_print_example.c +++ b/XilinxProcessorIPLib/drivers/video_common/examples/xedid_print_example.c @@ -69,7 +69,7 @@ void Edid_Print_Supported_VideoModeTable(u8 *EdidRaw) u8 Index; xil_printf("Supported resolutions from video mode table:\n"); - for (Index = 0; Index < XVID_VM_NUM_SUPPORT; Index++) { + for (Index = 0; Index < XVID_VM_NUM_SUPPORTED; Index++) { if (XEdid_IsVideoTimingSupported(EdidRaw, &XVid_VideoTimingModes[Index]) == XST_SUCCESS) { xil_printf("\t%s\n", XVid_VideoTimingModes[Index].Name);