diff options
author | Anssi Hannula <anssi@mandriva.org> | 2010-01-02 04:23:49 +0000 |
---|---|---|
committer | Anssi Hannula <anssi@mandriva.org> | 2010-01-02 04:23:49 +0000 |
commit | 423de7f72b60fe852c7b07ad80b80b8fcb47880a (patch) | |
tree | 309d9cef05f870ac5dc2c5f76dd3921316bbd23f | |
parent | c0e4b6f737dc71e342d162e15e504cdff763d7ea (diff) | |
download | monitor-edid-423de7f72b60fe852c7b07ad80b80b8fcb47880a.tar monitor-edid-423de7f72b60fe852c7b07ad80b80b8fcb47880a.tar.gz monitor-edid-423de7f72b60fe852c7b07ad80b80b8fcb47880a.tar.bz2 monitor-edid-423de7f72b60fe852c7b07ad80b80b8fcb47880a.tar.xz monitor-edid-423de7f72b60fe852c7b07ad80b80b8fcb47880a.zip |
Fix EDID block size (it is 128 B, not 256 B).
-rw-r--r-- | vbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -213,7 +213,7 @@ static int vbe_get_edid_info(char *edid, int port) { int i; unsigned char *mem; - const int EDID_BLOCK_SIZE = 256; + const int EDID_BLOCK_SIZE = 128; struct LRMI_regs regs; /* initialize LRMI */ |