diff --git a/XilinxProcessorIPLib/drivers/dptx/src/xdptx.c b/XilinxProcessorIPLib/drivers/dptx/src/xdptx.c index e8663b9d..f4a38726 100644 --- a/XilinxProcessorIPLib/drivers/dptx/src/xdptx.c +++ b/XilinxProcessorIPLib/drivers/dptx/src/xdptx.c @@ -1365,12 +1365,6 @@ static XDptx_TrainingState XDptx_TrainingStateClockRecovery(XDptx *InstancePtr) return XDPTX_TS_CHANNEL_EQUALIZATION; } - /* Check if training has tried, and failed, with the maximum - * voltage swing. */ - if (LinkConfig->VsLevel == XDPTX_MAXIMUM_VS_LEVEL) { - break; - } - /* Check if the same voltage swing for each lane has been used 5 * consecutive times. */ if (PrevVsLevel == LinkConfig->VsLevel) { @@ -1496,12 +1490,6 @@ static XDptx_TrainingState XDptx_TrainingStateChannelEqualization( return XDPTX_TS_SUCCESS; } - /* Check if training has tried, and failed, with the maximum - * voltage swing. */ - if (LinkConfig->VsLevel == XDPTX_MAXIMUM_VS_LEVEL) { - break; - } - /* Check if the same voltage swing for each lane has been used 5 * consecutive times. */ if (PrevVsLevel == LinkConfig->VsLevel) {