Fix code styling
authorJean THOMAS <git0@pub.jeanthomas.me>
Fri, 17 Jul 2020 15:21:30 +0000 (17:21 +0200)
committerJean THOMAS <git0@pub.jeanthomas.me>
Fri, 17 Jul 2020 15:21:30 +0000 (17:21 +0200)
gram/phy/ecp5ddrphy.py

index e562d65f40a6f7b5dd92f97b24b628f866973f48..676fdb857a3115c5809b9f4f7a7b1cfeeccc8399 100644 (file)
@@ -491,8 +491,7 @@ class ECP5DDRPHY(Peripheral, Elaboratable):
         # The read data valid is asserted for 1 sys_clk cycle when the data is available on the DFI
         # interface, the latency is the sum of the ODDRX2DQA, CAS, IDDRX2DQA latencies.
         rddata_en_last = Signal.like(rddata_en)
-        m.d.comb += rddata_en.eq(
-            Cat(dfi.phases[self.settings.rdphase].rddata_en, rddata_en_last))
+        m.d.comb += rddata_en.eq(Cat(dfi.phases[self.settings.rdphase].rddata_en, rddata_en_last))
         m.d.sync += rddata_en_last.eq(rddata_en)
         m.d.sync += [phase.rddata_valid.eq(rddata_en[-1])
                      for phase in dfi.phases]