diff options
author | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-11-09 15:17:00 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-11-09 15:17:00 +0100 |
commit | 29c9eb1c211b7eb9f75488aace487976297499f4 (patch) | |
tree | 19834da7835abfad5bedde12b98a27416c26f8c8 /sys/src/9/pc/sdiahci.c | |
parent | d8b1af77d0c98289669918d87884ff9974cb39d4 (diff) |
sdide: Marvell PATA, sdiahci: 82801 SATA RAID
Diffstat (limited to 'sys/src/9/pc/sdiahci.c')
-rw-r--r-- | sys/src/9/pc/sdiahci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/9/pc/sdiahci.c b/sys/src/9/pc/sdiahci.c index 98e8d7fc8..192bc8893 100644 --- a/sys/src/9/pc/sdiahci.c +++ b/sys/src/9/pc/sdiahci.c @@ -2010,6 +2010,8 @@ didtype(Pcidev *p) return Tesb; if((p->did & 0xfffb) == 0x27c1) return Tich; /* 82801g[bh]m */ + if((p->did & 0xffff) == 0x2822) + return Tich; /* 82801 SATA RAID */ if((p->did & 0xffff) == 0x2821) return Tich; /* 82801h[roh] */ if((p->did & 0xfffe) == 0x2824) |