From c1d8db396de9267cfdf1888a301bb8c2d7c3e746 Mon Sep 17 00:00:00 2001 From: Icenowy Zheng Date: Fri, 11 Aug 2023 14:56:56 +0800 Subject: [PATCH] build/gowin/common: Fix DDRInput The DDRInput of Gowin seems to be never used and contains a typo that prevents it from being really used. Fix this typo. Signed-off-by: Icenowy Zheng --- litex/build/gowin/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/build/gowin/common.py b/litex/build/gowin/common.py index 5c58fffa7..395d8c66a 100644 --- a/litex/build/gowin/common.py +++ b/litex/build/gowin/common.py @@ -48,7 +48,7 @@ class GowinDDRInputImpl(Module): class GowinDDRInput: @staticmethod def lower(dr): - return GowinInputImpl(dr.i, dr.o1, dr.o2, dr.clk) + return GowinDDRInputImpl(dr.i, dr.o1, dr.o2, dr.clk) # Gowin DDR Output ---------------------------------------------------------------------------------