mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-04-19 14:50:42 +02:00
xfree86: add edid quirk for Samsung Syncmaster 2333HD
It reports vertical size in cm in the detailed mode. X.Org bug#21750 <http://bugs.freedesktop.org/show_bug.cgi?id=21750> Reported-by: Peter Poklop <Peter.Poklop@gmx.at> Signed-off-by: Julien Cristau <jcristau@debian.org>
This commit is contained in:
parent
7c8327f0a7
commit
2be5eecb4b
1 changed files with 5 additions and 0 deletions
|
|
@ -160,6 +160,11 @@ static Bool quirk_detailed_v_in_cm (int scrnIndex, xf86MonPtr DDC)
|
|||
DDC->vendor.prod_id == 47360)
|
||||
return TRUE;
|
||||
|
||||
/* Bug #21750: Samsung Syncmaster 2333HD */
|
||||
if (memcmp (DDC->vendor.name, "SAM", 4) == 0 &&
|
||||
DDC->vendor.prod_id == 1157)
|
||||
return TRUE;
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue