diff options
author | Adam Jackson <ajax@redhat.com> | 2009-08-28 12:09:57 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2009-08-28 12:09:57 -0400 |
commit | 2c1a845521a31f08938b0f8d6e38835ce127c94a (patch) | |
tree | b2b732fccc3147efa4d07529ca2f638848d6ebef | |
parent | 2a806d7fa372e28d039761c9b4087cf812e8e46b (diff) |
EDID: Print 1152x864 in established timings, not x870
The spec says x870, but we actually use x864 because that's a real DMT
mode and x870 isn't. This might or might not be wrong, but we should at
least tell the truth.
-rw-r--r-- | hw/xfree86/ddc/print_edid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/ddc/print_edid.c b/hw/xfree86/ddc/print_edid.c index cebca4732..85c67d764 100644 --- a/hw/xfree86/ddc/print_edid.c +++ b/hw/xfree86/ddc/print_edid.c @@ -251,7 +251,7 @@ print_established_timings(int scrnIndex, struct established_timings *t) if (c&0x02) xf86DrvMsg(scrnIndex,X_INFO,"1024x768@75Hz\n"); if (c&0x01) xf86DrvMsg(scrnIndex,X_INFO,"1280x1024@75Hz\n"); c=t->t_manu; - if (c&0x80) xf86DrvMsg(scrnIndex,X_INFO,"1152x870@75Hz\n"); + if (c&0x80) xf86DrvMsg(scrnIndex,X_INFO,"1152x864@75Hz\n"); xf86DrvMsg(scrnIndex,X_INFO,"Manufacturer's mask: %X\n",c&0x7F); } |