diff options
author | ambrisko <ambrisko@FreeBSD.org> | 2007-12-19 17:23:47 +0000 |
---|---|---|
committer | ambrisko <ambrisko@FreeBSD.org> | 2007-12-19 17:23:47 +0000 |
commit | c805d7131a5064deb7c2ceef67c34a6f9305b251 (patch) | |
tree | 3d65d7863fa776c812ede3fc37da40cec80cea78 /sys/dev/mfi | |
parent | a41ac17851696e76270f203597733f62e051d4b1 (diff) | |
download | FreeBSD-src-c805d7131a5064deb7c2ceef67c34a6f9305b251.zip FreeBSD-src-c805d7131a5064deb7c2ceef67c34a6f9305b251.tar.gz |
Add Dell's sub-vendor id to identify PERC6 RAID controller which has LSI
vendor id's.
Diffstat (limited to 'sys/dev/mfi')
-rw-r--r-- | sys/dev/mfi/mfi_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/mfi/mfi_pci.c b/sys/dev/mfi/mfi_pci.c index 7085008..3becba0 100644 --- a/sys/dev/mfi/mfi_pci.c +++ b/sys/dev/mfi/mfi_pci.c @@ -117,6 +117,7 @@ struct mfi_ident { {0x1000, 0x0411, 0xffff, 0xffff, MFI_FLAGS_1064R, "LSI MegaSAS 1064R"}, /* Brocton IOP */ {0x1000, 0x0413, 0xffff, 0xffff, MFI_FLAGS_1064R, "LSI MegaSAS 1064R"}, /* Verde ZCR */ {0x1028, 0x0015, 0xffff, 0xffff, MFI_FLAGS_1064R, "Dell PERC 5/i"}, + {0x1000, 0x0060, 0x1028, 0xffff, MFI_FLAGS_1078, "Dell PERC 6"}, {0x1000, 0x0060, 0xffff, 0xffff, MFI_FLAGS_1078, "LSI MegaSAS 1078"}, {0, 0, 0, 0, 0, NULL} }; |