From a58e25c2f0a77e546fb5339c3c0a490bcc9389c8 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 18 Oct 2024 14:23:14 +0200 Subject: [PATCH] phy/pcs_1000basex: Remove rx_config_reg_ack.o check in AUTONEG-WAIT-ABI since no longer useful. --- liteeth/phy/pcs_1000basex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liteeth/phy/pcs_1000basex.py b/liteeth/phy/pcs_1000basex.py index 5c6c81b..7abf711 100644 --- a/liteeth/phy/pcs_1000basex.py +++ b/liteeth/phy/pcs_1000basex.py @@ -375,7 +375,7 @@ class PCS(LiteXModule): If(rx_config_reg_abi.o, NextState("AUTONEG-WAIT-ACK") ), - If((checker_tick & checker_error) | rx_config_reg_ack.o, + If(checker_tick & checker_error, self.restart.eq(1), NextState("AUTONEG-BREAKLINK") )