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 35e63c42..e562b632 100644 --- a/XilinxProcessorIPLib/drivers/video_common/examples/xvidc_edid_print_example.c +++ b/XilinxProcessorIPLib/drivers/video_common/examples/xvidc_edid_print_example.c @@ -79,7 +79,7 @@ void Edid_Print_Supported_VideoModeTable(u8 *EdidRaw) static void Edid_Print_BaseVPId(u8 *EdidRaw) { char ManName[4]; - XVidC_EdidGetVpiIdManName(EdidRaw, ManName); + XVidC_EdidGetManName(EdidRaw, ManName); /* Vendor and product identification. */ xil_printf("Vendor and product identification:\n"); diff --git a/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.c b/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.c index c87b93c9..c6986356 100644 --- a/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.c +++ b/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.c @@ -69,8 +69,8 @@ static float XVidC_CalculateBinaryFraction(u16 Val, u8 DecPtIndex); /******************************************************************************/ /** - * Get the manufacturer name as specified in the supplied base Extended Display - * Identification Data (EDID). + * Get the manufacturer name as specified in the vendor and product ID field of + * the supplied base Extended Display Identification Data (EDID). * * @param EdidRaw is the supplied base EDID to retrieve the manufacturer * name from. @@ -82,7 +82,7 @@ static float XVidC_CalculateBinaryFraction(u16 Val, u8 DecPtIndex); * @note The ManName argument is modified with the manufacturer name. * *******************************************************************************/ -void XVidC_EdidGetVpiIdManName(u8 *EdidRaw, char ManName[4]) +void XVidC_EdidGetManName(u8 *EdidRaw, char ManName[4]) { ManName[0] = 0x40 + ((EdidRaw[XVIDC_EDID_VPI_ID_MAN_NAME0] & XVIDC_EDID_VPI_ID_MAN_NAME0_CHAR0_MASK) >> diff --git a/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h b/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h index db9c203b..8f984a49 100644 --- a/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h +++ b/XilinxProcessorIPLib/drivers/video_common/src/xvidc_edid.h @@ -265,7 +265,7 @@ !memcmp(E, "\x00\xFF\xFF\xFF\xFF\xFF\xFF\x00", 8) /* Vendor and product identification: ID manufacturer name. */ -/* void XVidC_EdidGetVpiIdManName(u8 *EdidRaw, char ManName[4]); */ +/* void XVidC_EdidGetManName(u8 *EdidRaw, char ManName[4]); */ /* Vendor and product identification: ID product code. */ #define XVidC_EdidGetVpiIdProdCode(E) \ @@ -454,7 +454,7 @@ /**************************** Function Prototypes *****************************/ /* Vendor and product identification: ID manufacturer name. */ -void XVidC_EdidGetVpiIdManName(u8 *EdidRaw, char ManName[4]); +void XVidC_EdidGetManName(u8 *EdidRaw, char ManName[4]); /* Basic display parameters and features: Video input definition. */ XVidC_ColorDepth XVidC_EdidGetColorDepth(u8 *EdidRaw);