From 5ef7193688b5acc7151b3c533e5582ad3cec631d Mon Sep 17 00:00:00 2001 From: Andrei-Liviu Simion Date: Mon, 8 Jun 2015 16:54:17 -0700 Subject: [PATCH] dp: rx: mst: Removed XDp_RxPorts plurality since it represents a single port. Signed-off-by: Andrei-Liviu Simion --- XilinxProcessorIPLib/drivers/dp/src/xdp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/XilinxProcessorIPLib/drivers/dp/src/xdp.h b/XilinxProcessorIPLib/drivers/dp/src/xdp.h index ec1c942a..a3b26ac7 100644 --- a/XilinxProcessorIPLib/drivers/dp/src/xdp.h +++ b/XilinxProcessorIPLib/drivers/dp/src/xdp.h @@ -335,7 +335,7 @@ * DownReq, DownReply, AudioOver, PayloadAlloc, ActRx, * CrcTest * Added new data structures related to RX MST topology: - * XDp_RxIicMapEntry, XDp_RxDpcdMap, XDp_RxPorts, + * XDp_RxIicMapEntry, XDp_RxDpcdMap, XDp_RxPort, * XDp_RxTopology * Renamed XDp_Tx* to XDp_* to reflect commonality with RX * for: @@ -702,7 +702,7 @@ typedef struct { u8 Exposed; /**< When set to 1, the RX branch device will expose the port in the LINK_ADDRESS reply. */ -} XDp_RxPorts; +} XDp_RxPort; /** * This typedef contains topology information on directly connected sinks and of @@ -715,7 +715,7 @@ typedef struct { u8 PayloadTable[64]; /**< The payload table of the RX representing allocated bandwidth per stream. */ - XDp_RxPorts Ports[16]; /**< Port information additional to that + XDp_RxPort Ports[16]; /**< Port information additional to that contained in LinkAddressInfo. */ } XDp_RxTopology;