integration/soc/add_etherbone: pass phy to ethcore not self.ethphy.
Similar in most of the cases but added restrictions.
This commit is contained in:
parent
d5062d1f4f
commit
188e6f573a
|
@ -1313,7 +1313,7 @@ class LiteXSoC(SoC):
|
||||||
from liteeth.frontend.etherbone import LiteEthEtherbone
|
from liteeth.frontend.etherbone import LiteEthEtherbone
|
||||||
# Core
|
# Core
|
||||||
ethcore = LiteEthUDPIPCore(
|
ethcore = LiteEthUDPIPCore(
|
||||||
phy = self.ethphy,
|
phy = phy,
|
||||||
mac_address = mac_address,
|
mac_address = mac_address,
|
||||||
ip_address = ip_address,
|
ip_address = ip_address,
|
||||||
clk_freq = self.clk_freq)
|
clk_freq = self.clk_freq)
|
||||||
|
|
Loading…
Reference in New Issue