From de40a66873e3ddd4e2c3def229ab0fea2de47aa6 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 28 Jan 2020 10:41:53 +0100 Subject: [PATCH] phy/gmii: cleanup BUFGMUX instance --- liteeth/phy/gmii.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/liteeth/phy/gmii.py b/liteeth/phy/gmii.py index f797ff7..57326ed 100644 --- a/liteeth/phy/gmii.py +++ b/liteeth/phy/gmii.py @@ -62,10 +62,11 @@ class LiteEthPHYGMIICRG(Module, AutoCSR): else: # XXX Xilinx specific, replace BUFGMUX with a generic clock buffer? self.specials += Instance("BUFGMUX", - i_I0=self.cd_eth_rx.clk, - i_I1=clock_pads.tx, - i_S=mii_mode, - o_O=self.cd_eth_tx.clk) + i_I0 = self.cd_eth_rx.clk, + i_I1 = clock_pads.tx, + i_S = mii_mode, + o_O = self.cd_eth_tx.clk, + ) reset = Signal() if with_hw_init_reset: