summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-07-10 00:07:51 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2014-07-10 00:07:51 +0200
commite89ca39e5317c2c3cbc80ef9d6614c516b0bb220 (patch)
tree751f0b4bb1c8ee537b4562ae8dfa41623389e8f1 /sys
parentd0895186a15e2d017de561cb14c289052f090d47 (diff)
Add AHCI support for Intel 8 Series/C220 Series Chipset Family SATA Controller. (from sources)
Diffstat (limited to 'sys')
-rw-r--r--sys/src/9/pc/sdiahci.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/9/pc/sdiahci.c b/sys/src/9/pc/sdiahci.c
index 159ee1607..85ebc8d4b 100644
--- a/sys/src/9/pc/sdiahci.c
+++ b/sys/src/9/pc/sdiahci.c
@@ -2068,6 +2068,8 @@ didtype(Pcidev *p)
case 0x8086:
if((p->did & 0xffff) == 0x1e02)
return Tich; /* c210 */
+ if((p->did & 0xffff) == 0x8c02)
+ return Tich; /* c220 */
if((p->did & 0xffff) == 0x24d1)
return Tich; /* 82801eb/er */
if((p->did & 0xffff) == 0x2653)