vphy: Increased DRP timeout from 15->150.

Signed-off-by: Andrei-Liviu Simion <andrei.simion@xilinx.com>
Acked-by: Srikanth Vemula <svemula@xilinx.com>
This commit is contained in:
Andrei-Liviu Simion 2015-10-30 01:38:25 -07:00 committed by Nava kishore Manne
parent c7859ad32b
commit 8195e0511d

View file

@ -2188,7 +2188,7 @@ static u32 XVphy_DrpAccess(XVphy *InstancePtr, u8 QuadId, XVphy_ChannelId ChId,
do { do {
RegVal = XVphy_ReadReg(InstancePtr->Config.BaseAddr, RegVal = XVphy_ReadReg(InstancePtr->Config.BaseAddr,
RegOffsetSts); RegOffsetSts);
if (Retry > 15) { if (Retry > 150) {
return XST_FAILURE; return XST_FAILURE;
} }
Retry++; Retry++;
@ -2210,7 +2210,7 @@ static u32 XVphy_DrpAccess(XVphy *InstancePtr, u8 QuadId, XVphy_ChannelId ChId,
do { do {
RegVal = XVphy_ReadReg(InstancePtr->Config.BaseAddr, RegVal = XVphy_ReadReg(InstancePtr->Config.BaseAddr,
RegOffsetSts); RegOffsetSts);
if (Retry > 15) { if (Retry > 150) {
return XST_FAILURE; return XST_FAILURE;
} }
Retry++; Retry++;