summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorftrvxmtrx <devnull@localhost>2014-06-09 21:53:40 +0200
committerftrvxmtrx <devnull@localhost>2014-06-09 21:53:40 +0200
commitf6a7c628235180f4b23c8e1aa3d744aa59d020bb (patch)
tree9ce5df07c6475018c1d82b0f1f8917c2afe25d1d
parent52174db958342cb4d4178cfcdc06bbb1aca894ab (diff)
audiohda: add Intel 8 Series/C220 Series support
-rw-r--r--sys/src/9/pc/audiohda.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/9/pc/audiohda.c b/sys/src/9/pc/audiohda.c
index 8bcf6b975..81b9a6025 100644
--- a/sys/src/9/pc/audiohda.c
+++ b/sys/src/9/pc/audiohda.c
@@ -1746,6 +1746,7 @@ hdamatch(Pcidev *p)
case (0x8086 << 16) | 0x080a: /* Intel SCH (Oaktrail) */
case (0x8086 << 16) | 0x1c20: /* Intel PCH */
case (0x8086 << 16) | 0x1e20: /* Intel (Thinkpad x230t) */
+ case (0x8086 << 16) | 0x8c20: /* Intel 8 Series/C220 Series */
case (0x10de << 16) | 0x026c: /* NVidia MCP51 (untested) */
case (0x10de << 16) | 0x0371: /* NVidia MCP55 (untested) */
@@ -1863,6 +1864,7 @@ Found:
case 0x1e20:
case 0x811b: /* SCH */
case 0x080a:
+ case 0x8c20:
pcicfgw16(p, 0x78, pcicfgr16(p, 0x78) & ~0x800);
}
}