From 188e6f573a2d2c4c7e16eaea42ae17c54ff0809e Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 6 Aug 2020 18:22:42 +0200 Subject: [PATCH] integration/soc/add_etherbone: pass phy to ethcore not self.ethphy. Similar in most of the cases but added restrictions. --- litex/soc/integration/soc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/integration/soc.py b/litex/soc/integration/soc.py index eb56d0e2..cd45a0b4 100644 --- a/litex/soc/integration/soc.py +++ b/litex/soc/integration/soc.py @@ -1313,7 +1313,7 @@ class LiteXSoC(SoC): from liteeth.frontend.etherbone import LiteEthEtherbone # Core ethcore = LiteEthUDPIPCore( - phy = self.ethphy, + phy = phy, mac_address = mac_address, ip_address = ip_address, clk_freq = self.clk_freq) -- 2.30.2