From 62fb70a67d932d5da41d895799049547082cf460 Mon Sep 17 00:00:00 2001 From: Andrei-Liviu Simion Date: Wed, 21 Jan 2015 12:09:12 -0800 Subject: [PATCH] video_common: edid: XVidC_EdidIsVpiYearMab->XVidC_EdidIsYearMan. Signed-off-by: Andrei-Liviu Simion --- XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h b/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h index 5cce9ed8..88fad67b 100644 --- a/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h +++ b/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h @@ -283,7 +283,7 @@ #define XVidC_EdidGetManWeek(E) (E[XVIDC_EDID_VPI_WEEK_MAN]) #define XVidC_EdidGetModManYear(E) (E[XVIDC_EDID_VPI_YEAR] + 1990) #define XVidC_EdidIsYearModel(E) (XVidC_EdidGetManWeek(E) == 0xFF) -#define XVidC_EdidIsVpiYearMab(E) (XVidC_EdidGetManWeek(E) != 0xFF) +#define XVidC_EdidIsYearMan(E) (XVidC_EdidGetManWeek(E) != 0xFF) /* EDID structure version and revision. */ #define XVidC_EdidGetStructVer(E) (E[XVIDC_EDID_STRUCT_VER])