video_common: edid: XVidC_EdidSuppBDispVidAna*->XVidC_EdidSuppAnalogSig*.

Signed-off-by: Andrei-Liviu Simion <andrei.simion@xilinx.com>
This commit is contained in:
Andrei-Liviu Simion 2015-01-21 12:21:08 -08:00 committed by Nava kishore Manne
parent aeb103b4e4
commit 682507fb26
2 changed files with 8 additions and 8 deletions

View file

@ -181,21 +181,21 @@ static void Edid_Print_BaseBasicDisp(u8 *EdidRaw)
xil_printf("\tSynchronization types:\n"); xil_printf("\tSynchronization types:\n");
xil_printf("\t\tSeparate sync H & V signals "); xil_printf("\t\tSeparate sync H & V signals ");
if (XVidC_EdidSuppBDispVidAnaSepSyncHv(EdidRaw)) { if (XVidC_EdidSuppAnalogSigSepSyncHv(EdidRaw)) {
xil_printf("are supported.\n"); xil_printf("are supported.\n");
} }
else { else {
xil_printf("are not supported.\n"); xil_printf("are not supported.\n");
} }
xil_printf("\t\tComposite sync signal on horizontal "); xil_printf("\t\tComposite sync signal on horizontal ");
if (XVidC_EdidSuppBDispVidAnaCompSyncH(EdidRaw)) { if (XVidC_EdidSuppAnalogSigCompSyncH(EdidRaw)) {
xil_printf("is supported.\n"); xil_printf("is supported.\n");
} }
else { else {
xil_printf("is not supported.\n"); xil_printf("is not supported.\n");
} }
xil_printf("\t\tComposite sync signal on green video "); xil_printf("\t\tComposite sync signal on green video ");
if (XVidC_EdidSupp_BDispVidAnaCompSyncG(EdidRaw)) { if (XVidC_EdidSuppAnalogSigCompSyncG(EdidRaw)) {
xil_printf("is supported.\n"); xil_printf("is supported.\n");
} }
else { else {
@ -203,7 +203,7 @@ static void Edid_Print_BaseBasicDisp(u8 *EdidRaw)
} }
xil_printf("\tSerrations on the vertical sync "); xil_printf("\tSerrations on the vertical sync ");
if (XVidC_EdidSuppBDispVidAnaSerrVsync(EdidRaw)) { if (XVidC_EdidSuppAnalogSigSerrVsync(EdidRaw)) {
xil_printf("is supported.\n"); xil_printf("is supported.\n");
} }
else { else {

View file

@ -299,13 +299,13 @@
XVIDC_EDID_BDISP_VID_ANA_SLS_SHIFT) XVIDC_EDID_BDISP_VID_ANA_SLS_SHIFT)
#define XVidC_EdidGetAnalogSigVidSetup(E) \ #define XVidC_EdidGetAnalogSigVidSetup(E) \
((E[XVIDC_EDID_BDISP_VID] & XVIDC_EDID_BDISP_VID_ANA_VID_SETUP_MASK) != 0) ((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) ((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) ((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) ((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) ((E[XVIDC_EDID_BDISP_VID] & XVIDC_EDID_BDISP_VID_ANA_SERR_V_SYNC_MASK) != 0)
/* XVidC_ColorDepth XVidC_EdidGetColorDepth(u8 *EdidRaw); */ /* XVidC_ColorDepth XVidC_EdidGetColorDepth(u8 *EdidRaw); */
#define XVidC_EdidGetBDispVidDigVis(E) \ #define XVidC_EdidGetBDispVidDigVis(E) \