summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorMarco Peereboom <marco@cvs.openbsd.org>2005-06-05 23:34:01 +0000
committerMarco Peereboom <marco@cvs.openbsd.org>2005-06-05 23:34:01 +0000
commita8b7034eb2cdafeac035407e7c6e11f1ef12dd7c (patch)
tree029ce9d5b7d0fb8f95f003c41141814f8ae05988 /sys/dev/pci
parent65185bee849d244586822d7a6b8a5ca4eeec7141 (diff)
Add megaraid 320 from Alexey E. Suslikov <cruel at texnika dot com dot ua>
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/ami_pci.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/dev/pci/ami_pci.c b/sys/dev/pci/ami_pci.c
index 8ca590d9412..714d48345c2 100644
--- a/sys/dev/pci/ami_pci.c
+++ b/sys/dev/pci/ami_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ami_pci.c,v 1.25 2005/05/27 20:39:30 marco Exp $ */
+/* $OpenBSD: ami_pci.c,v 1.26 2005/06/05 23:34:00 marco Exp $ */
/*
* Copyright (c) 2001 Michael Shalayeff
@@ -85,15 +85,16 @@ struct ami_pci_device {
{ PCI_VENDOR_DELL, PCI_PRODUCT_DELL_PERC_4EDI, 0 },
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_80960RP_ATU,
AMI_CHECK_SIGN | AMI_BROKEN },
- { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID, 0 },
- { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SATA8, 0 },
+ { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID, 0 },
+ { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID_320, 0 },
+ { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SATA8, 0 },
{ 0 }
};
static const
struct ami_pci_subsys {
pcireg_t id;
- char name[12];
+ char name[14];
} ami_pci_subsys[] = {
/* only those of a special name are listed here */
{ 0x09A0101E, "Dell 466v1" },
@@ -105,6 +106,7 @@ struct ami_pci_subsys {
{ 0x10cc103c, "HP T7" },
{ 0x10cd103c, "HP 466" },
{ 0x45231000, "LSI 523" },
+ { 0x05328086, "Intel SRCU42X" },
{ 0 }
};
@@ -117,6 +119,7 @@ struct ami_pci_vendor {
{ 0x1028, "Dell" },
{ 0x103c, "HP" },
{ 0x1000, "LSI" },
+ { 0x8086, "Intel" },
{ 0 }
};