aboutsummaryrefslogtreecommitdiffstats
path: root/vbe.c
diff options
context:
space:
mode:
authorAnssi Hannula <anssi@mandriva.org>2010-01-02 04:23:49 +0000
committerAnssi Hannula <anssi@mandriva.org>2010-01-02 04:23:49 +0000
commit423de7f72b60fe852c7b07ad80b80b8fcb47880a (patch)
tree309d9cef05f870ac5dc2c5f76dd3921316bbd23f /vbe.c
parentc0e4b6f737dc71e342d162e15e504cdff763d7ea (diff)
downloadmonitor-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).
Diffstat (limited to 'vbe.c')
-rw-r--r--vbe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vbe.c b/vbe.c
index b9461d7..8eb74fc 100644
--- a/vbe.c
+++ b/vbe.c
@@ -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 */