mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-06 15:30:11 +01:00
Bug #10814: Add needed quirk for Samsung 225BW like the 226BW.
This commit is contained in:
parent
667e95f2e8
commit
00e8295b7e
1 changed files with 7 additions and 2 deletions
|
|
@ -92,11 +92,16 @@ static Bool quirk_prefer_large_60 (int scrnIndex, xf86MonPtr DDC)
|
|||
DDC->vendor.prod_id == 44358)
|
||||
return TRUE;
|
||||
|
||||
/* Samsung SyncMaster 226BW */
|
||||
/* Bug #10814: Samsung SyncMaster 225BW */
|
||||
if (memcmp (DDC->vendor.name, "SAM", 4) == 0 &&
|
||||
DDC->vendor.prod_id == 596)
|
||||
return TRUE;
|
||||
|
||||
/* Bug #10545: Samsung SyncMaster 226BW */
|
||||
if (memcmp (DDC->vendor.name, "SAM", 4) == 0 &&
|
||||
DDC->vendor.prod_id == 638)
|
||||
return TRUE;
|
||||
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue