dp: Enumerated the 2 modes of DisplayPort operation.

XDP_TX for Displayport transmitters (sources) XDP_RX for DisplayPort receivers
(sinks).

Signed-off-by: Andrei-Liviu Simion <andrei.simion@xilinx.com>
This commit is contained in:
Andrei-Liviu Simion 2015-01-25 22:55:48 -08:00 committed by Nava kishore Manne
parent 7b382d036f
commit 09b2ef3c26

View file

@ -280,6 +280,15 @@
/****************************** Type Definitions ******************************/
/**
* This typedef enumerates the RX and TX modes of operation for the DisplayPort
* core.
*/
typedef enum {
XDP_TX = 0,
XDP_RX
} XDp_CoreType;
/**
* This typedef contains configuration information for the DisplayPort core.
*/
@ -942,9 +951,6 @@ void XDp_RxSetUserPixelWidth(XDp *InstancePtr, u8 UserPixelWidth);
/******************* Macros (Inline Functions) Definitions ********************/
#define XDP_TX 0
#define XDP_RX 1
/******************************************************************************/
/**
* This is function determines whether the DisplayPort core, represented by the
@ -956,7 +962,7 @@ void XDp_RxSetUserPixelWidth(XDp *InstancePtr, u8 UserPixelWidth);
* XDP_TX if the core is of type TX.
*
* @note C-style signature:
* u32 XDp_GetCoreType(XDp *InstancePtr)
* XDp_CoreType XDp_GetCoreType(XDp *InstancePtr)
*
*******************************************************************************/
#define XDp_GetCoreType(InstancePtr) ((InstancePtr)->Config.IsRx \