summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Verkuil <hans.verkuil@cisco.com>2017-08-31 13:41:01 +0200
committerAdam Jackson <ajax@redhat.com>2017-09-07 12:13:30 -0400
commit4e3780670a33a7394f59c54fe2fa7bce7db914b9 (patch)
tree2a687be3341f0be8a78510e1d902bc3d65248acb
parent876ff5e51ac48abe5a4e290fda51cd6e6b2568dc (diff)
edid-decode: fix "Supports CVT standard blanking"
The wrong bit was tested. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
-rw-r--r--edid-decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/edid-decode.c b/edid-decode.c
index 4105700..5a162b1 100644
--- a/edid-decode.c
+++ b/edid-decode.c
@@ -460,7 +460,7 @@ detailed_block(unsigned char *x, int in_extension)
}
printf("\n");
- if (x[15] & 0x04)
+ if (x[15] & 0x08)
printf("Supports CVT standard blanking\n");
if (x[15] & 0x10)
printf("Supports CVT reduced blanking\n");