diff options
author | stanley lieber <stanley.lieber@gmail.com> | 2015-02-07 01:12:46 -0500 |
---|---|---|
committer | stanley lieber <stanley.lieber@gmail.com> | 2015-02-07 01:12:46 -0500 |
commit | b2c2d1ed2a0ce84f3ebe34065d35cec0789653cb (patch) | |
tree | ed9fef9d8d9fc48751eeae6e1314032087431b56 /sys/src | |
parent | 92d75fe03f6702f7621fe7fb822405fd339603aa (diff) |
vga/igfx: add 0x2a02 for GM965/GL960/X3100; comment vid/did with name of chipset
Diffstat (limited to 'sys/src')
-rw-r--r-- | sys/src/cmd/aux/vga/igfx.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/src/cmd/aux/vga/igfx.c b/sys/src/cmd/aux/vga/igfx.c index 5fbea0443..c7bac0450 100644 --- a/sys/src/cmd/aux/vga/igfx.c +++ b/sys/src/cmd/aux/vga/igfx.c @@ -304,10 +304,11 @@ devtype(Igfx *igfx) 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; |