Merge pull request #9 from felixheld/indentation-fixes

Fix all remaining indentation issues in python code
This commit is contained in:
Tim Ansell 2018-01-13 13:38:02 +11:00 committed by GitHub
commit 13d41f67ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 32 deletions

View File

@ -41,6 +41,7 @@ class A7DDRPHY(Module, AutoCSR):
# # #
# Clock
for i in range(len(pads.clk_p)):
sd_clk_se = Signal()
self.specials += [
Instance("OSERDESE2",
@ -57,8 +58,8 @@ class A7DDRPHY(Module, AutoCSR):
),
Instance("OBUFDS",
i_I=sd_clk_se,
o_O=pads.clk_p,
o_OB=pads.clk_n
o_O=pads.clk_p[i],
o_OB=pads.clk_n[i]
)
]