diff options
author | BurnZeZ <brz-9dev@feline.systems> | 2017-09-10 02:21:31 +0000 |
---|---|---|
committer | BurnZeZ <brz-9dev@feline.systems> | 2017-09-10 02:21:31 +0000 |
commit | 1ab2fed7a456e1ee1fcaf7b3a046ae6eaa060ba3 (patch) | |
tree | 5608f021dab99fae31b9c0e1cea8a309437a6aa2 /sys/src/9 | |
parent | b9b4797d56fe17006becfc2932d2431ee2508608 (diff) |
audiohda: add pci id for Intel 9 Series
Diffstat (limited to 'sys/src/9')
-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 d4487a7ef..2d6fca414 100644 --- a/sys/src/9/pc/audiohda.c +++ b/sys/src/9/pc/audiohda.c @@ -1747,6 +1747,7 @@ hdamatch(Pcidev *p) case (0x8086 << 16) | 0x1c20: /* Intel PCH */ case (0x8086 << 16) | 0x1e20: /* Intel (Thinkpad x230t) */ case (0x8086 << 16) | 0x8c20: /* Intel 8 Series/C220 Series */ + case (0x8086 << 16) | 0x8ca0: /* Intel 9 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 */ @@ -1871,6 +1872,7 @@ Found: case 0x811b: /* SCH */ case 0x080a: case 0x8c20: + case 0x8ca0: case 0x9c20: case 0x9ca0: case 0xa170: |