From 82dabd9ab23dcb755b05c2c1a78d5495bad634cd Mon Sep 17 00:00:00 2001 From: Durga challa Date: Tue, 5 Aug 2014 17:12:03 +0530 Subject: [PATCH] cfa: Modified enum names. Modified source files and doxygen report Signed-off-by: Durga challa Acked-by: Srikanth Vemula --- XilinxProcessorIPLib/drivers/cfa/src/xcfa.c | 2 +- XilinxProcessorIPLib/drivers/cfa/src/xcfa.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/XilinxProcessorIPLib/drivers/cfa/src/xcfa.c b/XilinxProcessorIPLib/drivers/cfa/src/xcfa.c index bc109d32..89c8cb82 100755 --- a/XilinxProcessorIPLib/drivers/cfa/src/xcfa.c +++ b/XilinxProcessorIPLib/drivers/cfa/src/xcfa.c @@ -551,7 +551,7 @@ void XCfa_GetActiveSize(XCfa *InstancePtr, u16 *HSize, u16 *VSize) * ******************************************************************************/ void XCfa_SetBayerPhase(XCfa *InstancePtr, - enum BayerPhaseCombination BayerPhase) + enum XCfa_BayerPhaseCombination BayerPhase) { /* Verify arguments. */ Xil_AssertVoid(InstancePtr != NULL); diff --git a/XilinxProcessorIPLib/drivers/cfa/src/xcfa.h b/XilinxProcessorIPLib/drivers/cfa/src/xcfa.h index 679c3644..3cab290d 100755 --- a/XilinxProcessorIPLib/drivers/cfa/src/xcfa.h +++ b/XilinxProcessorIPLib/drivers/cfa/src/xcfa.h @@ -195,7 +195,7 @@ enum { /** * These constants specify Bayer phase combinations of the core. */ -enum BayerPhaseCombination { +enum XCfa_BayerPhaseCombination { XCFA_RGRG_COMBINATION, /**< Red green combination */ XCFA_GRGR_COMBINATION, /**< Green red combination */ XCFA_GBGB_COMBINATION, /**< Green blue combination */ @@ -582,7 +582,7 @@ u32 XCfa_GetDbgPixelCount(XCfa *InstancePtr); void XCfa_SetActiveSize(XCfa *InstancePtr, u16 HSize, u16 VSize); void XCfa_GetActiveSize(XCfa *InstancePtr, u16 *HSize, u16 *VSize); void XCfa_SetBayerPhase(XCfa *InstancePtr, - enum BayerPhaseCombination BayerPhase); + enum XCfa_BayerPhaseCombination BayerPhase); u32 XCfa_GetBayerPhase(XCfa *InstancePtr); /* Self - Test function in xcfa_selftest.c */