diff options
author | Michael Forney <mforney@mforney.org> | 2021-02-03 16:19:57 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2021-02-03 16:19:57 -0800 |
commit | 49220af76e04d4ac45d8a67c77ab5732208508ca (patch) | |
tree | 6d00a411c8f2d7a9036203a2d08db96777399426 | |
parent | 79c4c039ab4563d3aac7349c1f57f61ce63063bd (diff) | |
download | plan9front-49220af76e04d4ac45d8a67c77ab5732208508ca.tar.xz |
[9front] [PATCH] audiohda: add PCI ID for Intel C610/X99
---
Tested and seems to work fine.
-rw-r--r-- | sys/src/9/pc/audiohda.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/src/9/pc/audiohda.c b/sys/src/9/pc/audiohda.c index 1466a3826..ea9969738 100644 --- a/sys/src/9/pc/audiohda.c +++ b/sys/src/9/pc/audiohda.c @@ -1780,6 +1780,7 @@ hdamatch(Pcidev *p) case (0x8086 << 16) | 0x9d71: /* Intel Sunrise Point-LP */ case (0x8086 << 16) | 0x3a6e: /* Intel ICH10 */ case (0x8086 << 16) | 0x3198: /* Intel Gemini-Lake */ + case (0x8086 << 16) | 0x8d20: /* Intel C610/X99 */ case (0x10de << 16) | 0x026c: /* NVidia MCP51 (untested) */ case (0x10de << 16) | 0x0371: /* NVidia MCP55 (untested) */ |