[PATCH 06/27] edid-decode: bit 0, byte 0x18 has been renamed for EDID 1.4

Hans Verkuil hverkuil at xs4all.nl
Thu Aug 31 11:40:59 UTC 2017


From: Hans Verkuil <hans.verkuil at cisco.com>

This bit was "Supports GTF timings within operating range", but for
EDID 1.4 it has been renamed to "Display is continuous frequency".

Update the text accordingly.

Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>
---
 edid-decode.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/edid-decode.c b/edid-decode.c
index 693e29d8..251b8358 100644
--- a/edid-decode.c
+++ b/edid-decode.c
@@ -2064,8 +2064,12 @@ int main(int argc, char **argv)
 	printf("First detailed timing is preferred timing\n");
 	has_preferred_timing = 1;
     }
-    if (edid[0x18] & 0x01)
-	printf("Supports GTF timings within operating range\n");
+    if (edid[0x18] & 0x01) {
+	if (claims_one_point_four)
+	    printf("Display is continuous frequency\n");
+	else
+	    printf("Supports GTF timings within operating range\n");
+    }
 
     printf("Display x,y Chromaticity:\n");
     col_x = (edid[0x1b] << 2) | (edid[0x19] >> 6);
-- 
2.14.1



More information about the xorg-devel mailing list