From b95845310528f7e0bdeeff147fcb3e480c40fa54 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 17 Jan 2022 18:18:11 +0100 Subject: [PATCH] soc/add_video_framebuffer: Use clock_faster_than_sys when equal. --- 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 72630b284..9d3741b2c 100644 --- a/litex/soc/integration/soc.py +++ b/litex/soc/integration/soc.py @@ -1837,7 +1837,7 @@ class LiteXSoC(SoC): base = base, format = format, clock_domain = clock_domain, - clock_faster_than_sys = vtg.video_timings["pix_clk"] > self.sys_clk_freq, + clock_faster_than_sys = vtg.video_timings["pix_clk"] >= self.sys_clk_freq, ) setattr(self.submodules, name, vfb)