From 682507fb26ac4b994ac24e346c42b8546310741e Mon Sep 17 00:00:00 2001 From: Andrei-Liviu Simion Date: Wed, 21 Jan 2015 12:21:08 -0800 Subject: [PATCH] video_common: edid: XVidC_EdidSuppBDispVidAna*->XVidC_EdidSuppAnalogSig*. Signed-off-by: Andrei-Liviu Simion --- .../video_common/examples/xvidc_edid_print_example.c | 8 ++++---- .../drivers/video_common/src/xvidc_edid.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/XilinxProcessorIPLib/drivers/video_common/examples/xvidc_edid_print_example.c b/XilinxProcessorIPLib/drivers/video_common/examples/xvidc_edid_print_example.c index 406991f1..01b454b8 100644 --- a/XilinxProcessorIPLib/drivers/video_common/examples/xvidc_edid_print_example.c +++ b/XilinxProcessorIPLib/drivers/video_common/examples/xvidc_edid_print_example.c @@ -181,21 +181,21 @@ static void Edid_Print_BaseBasicDisp(u8 *EdidRaw) xil_printf("\tSynchronization types:\n"); xil_printf("\t\tSeparate sync H & V signals "); - if (XVidC_EdidSuppBDispVidAnaSepSyncHv(EdidRaw)) { + if (XVidC_EdidSuppAnalogSigSepSyncHv(EdidRaw)) { xil_printf("are supported.\n"); } else { xil_printf("are not supported.\n"); } xil_printf("\t\tComposite sync signal on horizontal "); - if (XVidC_EdidSuppBDispVidAnaCompSyncH(EdidRaw)) { + if (XVidC_EdidSuppAnalogSigCompSyncH(EdidRaw)) { xil_printf("is supported.\n"); } else { xil_printf("is not supported.\n"); } xil_printf("\t\tComposite sync signal on green video "); - if (XVidC_EdidSupp_BDispVidAnaCompSyncG(EdidRaw)) { + if (XVidC_EdidSuppAnalogSigCompSyncG(EdidRaw)) { xil_printf("is supported.\n"); } else { @@ -203,7 +203,7 @@ static void Edid_Print_BaseBasicDisp(u8 *EdidRaw) } xil_printf("\tSerrations on the vertical sync "); - if (XVidC_EdidSuppBDispVidAnaSerrVsync(EdidRaw)) { + if (XVidC_EdidSuppAnalogSigSerrVsync(EdidRaw)) { xil_printf("is supported.\n"); } else { diff --git a/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h b/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h index bfdeae32..dd3efca3 100644 --- a/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h +++ b/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h @@ -299,13 +299,13 @@ XVIDC_EDID_BDISP_VID_ANA_SLS_SHIFT) #define XVidC_EdidGetAnalogSigVidSetup(E) \ ((E[XVIDC_EDID_BDISP_VID] & XVIDC_EDID_BDISP_VID_ANA_VID_SETUP_MASK) != 0) -#define XVidC_EdidSuppBDispVidAnaSepSyncHv(E) \ +#define XVidC_EdidSuppAnalogSigSepSyncHv(E) \ ((E[XVIDC_EDID_BDISP_VID] & XVIDC_EDID_BDISP_VID_ANA_SEP_SYNC_HV_MASK) != 0) -#define XVidC_EdidSuppBDispVidAnaCompSyncH(E) \ +#define XVidC_EdidSuppAnalogSigCompSyncH(E) \ ((E[XVIDC_EDID_BDISP_VID] & XVIDC_EDID_BDISP_VID_ANA_COMP_SYNC_H_MASK) != 0) -#define XVidC_EdidSupp_BDispVidAnaCompSyncG(E) \ +#define XVidC_EdidSuppAnalogSigCompSyncG(E) \ ((E[XVIDC_EDID_BDISP_VID] & XVIDC_EDID_BDISP_VID_ANA_COMP_SYNC_G_MASK) != 0) -#define XVidC_EdidSuppBDispVidAnaSerrVsync(E) \ +#define XVidC_EdidSuppAnalogSigSerrVsync(E) \ ((E[XVIDC_EDID_BDISP_VID] & XVIDC_EDID_BDISP_VID_ANA_SERR_V_SYNC_MASK) != 0) /* XVidC_ColorDepth XVidC_EdidGetColorDepth(u8 *EdidRaw); */ #define XVidC_EdidGetBDispVidDigVis(E) \