summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Verkuil <hans.verkuil@cisco.com>2017-08-31 13:40:59 +0200
committerAdam Jackson <ajax@redhat.com>2017-09-07 12:13:30 -0400
commitf8397bb24d920ca23e80df25f0f3052998295c3f (patch)
tree8fcb9691c98f13f9c69b26d3cec946927147a52e
parent277bcbd2a4110fed9200e97797e7cded348822f2 (diff)
edid-decode: bit 0, byte 0x18 has been renamed for EDID 1.4
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@cisco.com>
-rw-r--r--edid-decode.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/edid-decode.c b/edid-decode.c
index 693e29d..251b835 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);