From 9115db5023266749c77b7b89ac5d8025ea8a5631 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 14 Nov 2022 09:54:55 +0100 Subject: [PATCH] soc/cores/video/VideoS7GTPHDMIPHY: Fix typo (probably related to some refactoring). --- litex/soc/cores/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/cores/video.py b/litex/soc/cores/video.py index 00507a430..93a0444dc 100644 --- a/litex/soc/cores/video.py +++ b/litex/soc/cores/video.py @@ -1036,7 +1036,7 @@ class VideoS7GTPHDMIPHY(Module): self.n = n tx_pads = GTPPads(p=getattr(pads, f"data{channel}_p"), n=getattr(pads, f"data{channel}_n")) # FIXME: Find a way to avoid RX pads. - rx_pads = GTPPads(p=getattr(pads, f"rx{channe}_p"), n=getattr(pads, f"rx{channel}_n")) + rx_pads = GTPPads(p=getattr(pads, f"rx{channel}_p"), n=getattr(pads, f"rx{channel}_n")) gtp = GTP(pll, tx_pads, rx_pads=rx_pads, sys_clk_freq=sys_clk_freq, tx_polarity = 1, # FIXME: Specific to Decklink Mini 4K, make it configurable. tx_buffer_enable = True,