From: Florent Kermarrec Date: Thu, 6 Aug 2020 16:22:42 +0000 (+0200) Subject: integration/soc/add_etherbone: pass phy to ethcore not self.ethphy. X-Git-Tag: 24jan2021_ls180~15 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=188e6f573a2d2c4c7e16eaea42ae17c54ff0809e;p=litex.git integration/soc/add_etherbone: pass phy to ethcore not self.ethphy. Similar in most of the cases but added restrictions. --- 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)