video_common: edid: XVidC_EdidIsBDispVidVsiDigital->XVidC_EdidIsDigitalSig.

Signed-off-by: Andrei-Liviu Simion <andrei.simion@xilinx.com>
This commit is contained in:
Andrei-Liviu Simion 2015-01-21 12:11:01 -08:00 committed by Nava kishore Manne
parent 62fb70a67d
commit 4d2da3ff6b
2 changed files with 3 additions and 3 deletions

View file

@ -115,7 +115,7 @@ static void Edid_Print_BaseBasicDisp(u8 *EdidRaw)
{
/* Basic display parameters and features. */
xil_printf("Basic display parameters and features:\n");
if (XVidC_EdidIsBDispVidVsiDigital(EdidRaw)) {
if (XVidC_EdidIsDigitalSig(EdidRaw)) {
/* Input is a digital video signal interface. */
xil_printf("\tVideo signal interface is digital.\n");
@ -303,7 +303,7 @@ static void Edid_Print_BaseBasicDisp(u8 *EdidRaw)
xil_printf("is not supported.\n");
}
if (XVidC_EdidIsBDispVidVsiDigital(EdidRaw)) {
if (XVidC_EdidIsDigitalSig(EdidRaw)) {
/* Input is a digital video signal interface. */
xil_printf("\tSupported color encoding format(s):\n");
xil_printf("\t\t\t\tRGB 4:4:4\n");

View file

@ -290,7 +290,7 @@
#define XVidC_EdidGetStructRev(E) (E[XVIDC_EDID_STRUCT_REV])
/* Basic display parameters and features: Video input definition. */
#define XVidC_EdidIsBDispVidVsiDigital(E) \
#define XVidC_EdidIsDigitalSig(E) \
((E[XVIDC_EDID_BDISP_VID] & XVIDC_EDID_BDISP_VID_VSI_MASK) != 0)
#define XVidC_EdidIsBDispVidVsiAnalog(E) \
((E[XVIDC_EDID_BDISP_VID] & XVIDC_EDID_BDISP_VID_VSI_MASK) == 0)