diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-05-08 05:19:44 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-05-08 05:19:44 +0200 |
commit | 0e516cbf488a9ec8edae3dc6efca2baa0c3d95bd (patch) | |
tree | 75b710120b81e32fc6b17c45f6b3f734da24936a /sys | |
parent | 45e2b4dfe9570aefe3e5f2a8b7af956b7365f522 (diff) |
vgaigfx: fix device id for Ivy Bridge (thanks Kenji)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/src/9/pc/vgaigfx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/vgaigfx.c b/sys/src/9/pc/vgaigfx.c index ecc90edf3..30b2096e8 100644 --- a/sys/src/9/pc/vgaigfx.c +++ b/sys/src/9/pc/vgaigfx.c @@ -128,7 +128,7 @@ igfxcurregs(VGAscr* scr, int pipe) if((scr->mmio[(0x70008 | o)/4] & (1<<31)) == 0) return nil; switch(scr->pci->did){ - case 0x0116: /* Ivy Bridge */ + case 0x0166: /* Ivy Bridge */ if(pipe > 2) return nil; break; |