targets: fix typos in previous changes.
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Sat, 21 Mar 2020 17:26:58 +0000 (18:26 +0100)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Sat, 21 Mar 2020 17:26:58 +0000 (18:26 +0100)
litex/boards/targets/kcu105.py
litex/boards/targets/netv2.py
litex/boards/targets/nexys4ddr.py
litex/boards/targets/ulx3s.py
litex/boards/targets/versa_ecp5.py

index cd9beb195a5a3961e9af018ba4c20e92ef9419a7..30ff747e779a5dc90eecaccb435d41955b1c99d7 100755 (executable)
@@ -54,7 +54,7 @@ class BaseSoC(SoCCore):
         platform = kcu105.Platform()
 
         # SoCCore ----------------------------------------------------------------------------------
-        SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, with_ethernet=False, **kwargs)
+        SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
 
         # CRG --------------------------------------------------------------------------------------
         self.submodules.crg = _CRG(platform, sys_clk_freq)
index f163ae7d3e1185fa90ca62311629435ebef03175..3bb14c56101ddc962eace2daad602249139d052b 100755 (executable)
@@ -49,7 +49,7 @@ class BaseSoC(SoCCore):
     def __init__(self, sys_clk_freq=int(100e6), with_ethernet=False, **kwargs):
         platform = netv2.Platform()
 
-        # SoCCore ---------------------------------------------------------------------------------
+        # SoCCore ----------------------------------------------------------------------------------
         SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
 
         # CRG --------------------------------------------------------------------------------------
index ba0d6c1d823c9b6940fc23fd5deeb97490dc0388..a4b617df845c69ff794a9b6a4e13c7fafd3f1dc3 100755 (executable)
@@ -54,8 +54,8 @@ class BaseSoC(SoCCore):
     def __init__(self, sys_clk_freq=int(75e6), with_ethernet=False, **kwargs):
         platform = nexys4ddr.Platform()
 
-        # SoCSDRAM ---------------------------------------------------------------------------------
-        SoCSDRAM.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
+        # SoCCore ----------------------------------_-----------------------------------------------
+        SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
 
         # CRG --------------------------------------------------------------------------------------
         self.submodules.crg = _CRG(platform, sys_clk_freq)
index ce0ddcdb76fba2cd86c904a82e2f554ff6858bc2..17b30a5243999156ff9335ea6531987bf5347389 100755 (executable)
@@ -10,7 +10,7 @@ import sys
 from migen import *
 from migen.genlib.resetsync import AsyncResetSynchronizer
 
-from litex_boards.platforms import ulx3s
+from litex.boards.platforms import ulx3s
 
 from litex.build.lattice.trellis import trellis_args, trellis_argdict
 
index 21181b11a31c34f383151750ed002c1825bb656f..0669e274708900e55ac4b1f4ce57cbbe7c9a4d74 100755 (executable)
@@ -71,12 +71,12 @@ class _CRG(Module):
 
 # BaseSoC ------------------------------------------------------------------------------------------
 
-class BaseSoC(SoCSDRAM):
+class BaseSoC(SoCCore):
     def __init__(self, sys_clk_freq=int(75e6), with_ethernet=False, toolchain="trellis", **kwargs):
         platform = versa_ecp5.Platform(toolchain=toolchain)
 
-        # SoCSDRAM ---------------------------------------------------------------------------------
-        SoCSDRAM.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
+        # SoCCore -----------------------------------------_----------------------------------------
+        SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
 
         # CRG --------------------------------------------------------------------------------------
         self.submodules.crg = _CRG(platform, sys_clk_freq)