soc/add_video_framebuffer: Pass clock_domain to VideoFrameBuffer.

This commit is contained in:
Florent Kermarrec 2021-03-05 14:23:39 +01:00
parent 8b531b4215
commit 0280a9dd57
1 changed files with 1 additions and 1 deletions

View File

@ -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")