git: 6ad638acd110 - main - hardware: added Dell H840 raid support
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 24 Mar 2022 06:14:19 UTC
The branch main has been updated by wma: URL: https://cgit.FreeBSD.org/src/commit/?id=6ad638acd110a22a3d713b4a75e0074237b0d444 commit 6ad638acd110a22a3d713b4a75e0074237b0d444 Author: Wojciech Macek <wma@FreeBSD.org> AuthorDate: 2022-03-24 06:13:45 +0000 Commit: Wojciech Macek <wma@FreeBSD.org> CommitDate: 2022-03-24 06:13:45 +0000 hardware: added Dell H840 raid support Obtained from: Stormshield Differential revision: https://reviews.freebsd.org/D34623 --- sys/dev/mfi/mfi_pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/mfi/mfi_pci.c b/sys/dev/mfi/mfi_pci.c index f473a30f3f7f..90e78aeaf509 100644 --- a/sys/dev/mfi/mfi_pci.c +++ b/sys/dev/mfi/mfi_pci.c @@ -126,6 +126,7 @@ struct mfi_ident { int flags; const char *desc; } mfi_identifiers[] = { + {0x1000, 0x005b, 0x1028, 0x1fc9, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "Dell PERC H840 Adapter"}, {0x1000, 0x005b, 0x1028, 0x1f2d, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "Dell PERC H810 Adapter"}, {0x1000, 0x005b, 0x1028, 0x1f30, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "Dell PERC H710 Embedded"}, {0x1000, 0x005b, 0x1028, 0x1f31, MFI_FLAGS_SKINNY| MFI_FLAGS_TBOLT| MFI_FLAGS_MRSAS, "Dell PERC H710P Adapter"},