mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-03-07 05:10:29 +01:00
EDID: Fix timing class names to match the spec
(cherry picked from commit 5c1afac5ee)
This commit is contained in:
parent
dbac41b624
commit
7cae08d219
1 changed files with 3 additions and 3 deletions
|
|
@ -230,7 +230,7 @@ print_established_timings(int scrnIndex, struct established_timings *t)
|
|||
unsigned char c;
|
||||
|
||||
if (t->t1 || t->t2 || t->t_manu)
|
||||
xf86DrvMsg(scrnIndex,X_INFO,"Supported VESA Video Modes:\n");
|
||||
xf86DrvMsg(scrnIndex,X_INFO,"Supported established timings:\n");
|
||||
c=t->t1;
|
||||
if (c&0x80) xf86DrvMsg(scrnIndex,X_INFO,"720x400@70Hz\n");
|
||||
if (c&0x40) xf86DrvMsg(scrnIndex,X_INFO,"720x400@88Hz\n");
|
||||
|
|
@ -262,7 +262,7 @@ print_std_timings(int scrnIndex, struct std_timings *t)
|
|||
for (i=0;i<STD_TIMINGS;i++) {
|
||||
if (t[i].hsize > 256) { /* sanity check */
|
||||
if (!done) {
|
||||
xf86DrvMsg(scrnIndex,X_INFO,"Supported Future Video Modes:\n");
|
||||
xf86DrvMsg(scrnIndex,X_INFO,"Supported standard timings:\n");
|
||||
done = 1;
|
||||
}
|
||||
xf86DrvMsg(scrnIndex,X_INFO,
|
||||
|
|
@ -295,7 +295,7 @@ print_detailed_timings(int scrnIndex, struct detailed_timings *t)
|
|||
{
|
||||
|
||||
if (t->clock > 15000000) { /* sanity check */
|
||||
xf86DrvMsg(scrnIndex,X_INFO,"Supported additional Video Mode:\n");
|
||||
xf86DrvMsg(scrnIndex,X_INFO,"Supported detailed timing:\n");
|
||||
xf86DrvMsg(scrnIndex,X_INFO,"clock: %.1f MHz ",t->clock/1000000.0);
|
||||
xf86ErrorF("Image Size: %i x %i mm\n",t->h_size,t->v_size);
|
||||
xf86DrvMsg(scrnIndex,X_INFO,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue