diff options
| author | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-08-29 19:37:26 +0200 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2017-08-29 19:37:26 +0200 |
| commit | b41bd1b007f497c8a3ceccdaae877634727fed2d (patch) | |
| tree | 562c0639ea869a0defa69ca3e54a1d448a9a5bd7 | |
| parent | 30ea7ad58affeea1a0df11cb423eee10161fa9f5 (diff) | |
| download | plan9front-b41bd1b007f497c8a3ceccdaae877634727fed2d.tar.xz | |
audiohda: Intel Sunrise Point-H support (thanks sam-d)
| -rw-r--r-- | sys/src/9/pc/audiohda.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/9/pc/audiohda.c b/sys/src/9/pc/audiohda.c index b706c1834..89e8399bb 100644 --- a/sys/src/9/pc/audiohda.c +++ b/sys/src/9/pc/audiohda.c @@ -1749,6 +1749,7 @@ hdamatch(Pcidev *p) case (0x8086 << 16) | 0x8c20: /* Intel 8 Series/C220 Series */ case (0x8086 << 16) | 0x9c20: /* Intel 8 Series Lynx Point */ case (0x8086 << 16) | 0x9ca0: /* Intel Wildcat Point */ + case (0x8086 << 16) | 0xa170: /* Intel Sunrise Point-H */ case (0x10de << 16) | 0x026c: /* NVidia MCP51 (untested) */ case (0x10de << 16) | 0x0371: /* NVidia MCP55 (untested) */ @@ -1871,6 +1872,7 @@ Found: case 0x8c20: case 0x9c20: case 0x9ca0: + case 0xa170: pcicfgw16(p, 0x78, pcicfgr16(p, 0x78) & ~0x800); } } |
