Fix all remaining indentation issues in python code

I ran a script that shouldn't have missed any tab in the python source files.
This commit is contained in:
Felix Held 2018-01-13 13:23:18 +11:00
parent 2788294834
commit 20af2bf201
2 changed files with 22 additions and 22 deletions

View File

@ -55,14 +55,14 @@ class LiteEthPHYGMIICRG(Module, AutoCSR):
# MII: Use PHY clock_pads.tx as eth_tx_clk, do not drive clock_pads.gtx
self.specials += DDROutput(1, mii_mode, clock_pads.gtx, ClockSignal("eth_tx"))
if isinstance(mii_mode, int) and (mii_mode == 0):
self.comb += self.cd_eth_tx.clk.eq(self.cd_eth_rx.clk)
self.comb += self.cd_eth_tx.clk.eq(self.cd_eth_rx.clk)
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)
# 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)
reset = Signal()
if with_hw_init_reset:

View File

@ -10,26 +10,26 @@ if sys.version_info[:3] < (3, 3):
setup(
name="liteeth",
version="0.1",
description="small footprint and configurable Ethernet core",
long_description=open("README").read(),
author="Florent Kermarrec",
author_email="florent@enjoy-digital.fr",
url="http://enjoy-digital.fr",
download_url="https://github.com/enjoy-digital/liteeth",
name="liteeth",
version="0.1",
description="small footprint and configurable Ethernet core",
long_description=open("README").read(),
author="Florent Kermarrec",
author_email="florent@enjoy-digital.fr",
url="http://enjoy-digital.fr",
download_url="https://github.com/enjoy-digital/liteeth",
test_suite="test",
license="BSD",
platforms=["Any"],
keywords="HDL ASIC FPGA hardware design",
classifiers=[
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Environment :: Console",
"Development Status :: Alpha",
"Intended Audience :: Developers",
classifiers=[
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Environment :: Console",
"Development Status :: Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
packages=find_packages(),
include_package_data=True,