From 9950e75654683affbe04c0e9a670013c0dc7543b Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Sat, 22 Aug 2020 19:49:24 +0200 Subject: [PATCH] build/io: fix InferedSDRIO (thanks @mtdudek). --- litex/build/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/build/io.py b/litex/build/io.py index 8e93d19bd..e0315ba8a 100644 --- a/litex/build/io.py +++ b/litex/build/io.py @@ -64,7 +64,7 @@ class SDRIO(Special): @staticmethod def lower(dr): - return InferedSDRIO(dr.i, dr.o, dr.clk, dr.clk_domain) + return InferedSDRIO(dr.i, dr.o, dr.clk) class SDRInput(SDRIO): pass