diff mbox series

edid-decode: fix horizontal front porch for CVT RBv2

Message ID 20221028142405.81894-1-contact@emersion.fr
State New
Headers show
Series edid-decode: fix horizontal front porch for CVT RBv2 | expand

Commit Message

Simon Ser Oct. 28, 2022, 2:24 p.m. UTC
According to CVT 2.0 table 3-2, C_H_FRONT_PORCH is 8 for both
RBv2 and RBv3.

Signed-off-by: Simon Ser <contact@emersion.fr>
---
 calc-gtf-cvt.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: f1ff7ad7bcb2fbb85017bbb2baa6bed37c412895
diff mbox series

Patch

diff --git a/calc-gtf-cvt.cpp b/calc-gtf-cvt.cpp
index 6330bb7ac814..7d53ad9625a1 100644
--- a/calc-gtf-cvt.cpp
+++ b/calc-gtf-cvt.cpp
@@ -232,7 +232,7 @@  timings edid_state::calc_cvt_mode(unsigned h_pixels, unsigned v_lines,
 	t.vfp = v_blank - t.vbp - t.vsync;
 	t.pixclk_khz = round(1000.0 * pixel_freq);
 	t.hsync = h_sync;
-	if (rb == RB_CVT_V3)
+	if (rb >= RB_CVT_V2)
 		t.hfp = 8;
 	else
 		t.hfp = (h_blank / 2.0) - t.hsync;