From 0280a9dd575e9c80b907e53ad308df33800f6440 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 5 Mar 2021 14:23:39 +0100 Subject: [PATCH] soc/add_video_framebuffer: Pass clock_domain to VideoFrameBuffer. --- litex/soc/integration/soc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/integration/soc.py b/litex/soc/integration/soc.py index 8cb7edd69..e9a61aaaa 100644 --- a/litex/soc/integration/soc.py +++ b/litex/soc/integration/soc.py @@ -1668,7 +1668,7 @@ class LiteXSoC(SoC): vfb = VideoFrameBuffer(self.sdram.crossbar.get_port(), hres = int(timings.split("@")[0].split("x")[0]), vres = int(timings.split("@")[0].split("x")[1]), - clock_domain = "vga" + clock_domain = clock_domain ) self.submodules.video_framebuffer = vfb self.add_csr("video_framebuffer")