cfa: Modified enum names.

Modified source files and doxygen report

Signed-off-by: Durga challa <vnsldurg@xilinx.com>
Acked-by: Srikanth Vemula <svemula@xilinx.com>
This commit is contained in:
Durga challa 2014-08-05 17:12:03 +05:30 committed by Jagannadha Sutradharudu Teki
parent 397d8672c6
commit 82dabd9ab2
2 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -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 */