shithub: riscv

Download patch

ref: b2c2d1ed2a0ce84f3ebe34065d35cec0789653cb
parent: 92d75fe03f6702f7621fe7fb822405fd339603aa
author: stanley lieber <[email protected]>
date: Fri Feb 6 20:12:46 EST 2015

vga/igfx: add 0x2a02 for GM965/GL960/X3100; comment vid/did with name of chipset

--- a/sys/src/cmd/aux/vga/igfx.c
+++ b/sys/src/cmd/aux/vga/igfx.c
@@ -304,10 +304,11 @@
 	if(igfx->pci->vid != 0x8086)
 		return -1;
 	switch(igfx->pci->did){
-	case 0x0166:	/* X230 */
+	case 0x0166:	/* 3rd Gen Core - ThinkPad X230 */
 		return TypeIVB;
-	case 0x27a2:	/* X60t */
-	case 0x2a42:	/* X200 */
+	case 0x27a2:	/* GM945/82940GML - ThinkPad X60 Tablet */
+	case 0x2a02:	/* GM965/GL960/X3100 - ThinkPad X61 Tablet */
+	case 0x2a42:	/* 4 Series Mobile - ThinkPad X200 */
 		return TypeG45;
 	}
 	return -1;