vga/igfx: add missing pci did's for hwblank for known mobile models

This commit is contained in:
qwx 2021-12-08 09:52:07 +00:00
parent 3710ed60fd
commit b4d4cf69be

View file

@ -68,13 +68,18 @@ igfxblank(VGAscr *scr, int blank)
return; return;
case 0x2a02: /* GM965 */ case 0x2a02: /* GM965 */
case 0x27a2: /* GM45 */
case 0x2a42: /* GM45 */ case 0x2a42: /* GM45 */
case 0x2592: /* GM915 */ case 0x2592: /* GM915 */
off = 0x61204; off = 0x61204;
break; break;
case 0x0102: /* ILK */
case 0x0046: /* ILK/ARD */
case 0x0126: /* SNB */ case 0x0126: /* SNB */
case 0x0166: /* IVB */ case 0x0166: /* IVB */
case 0x0a16: /* HSW */
case 0x1616: /* BDW */
off = 0xC7204; off = 0xC7204;
break; break;
} }