diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-02-28 02:03:35 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-02-28 02:03:35 +0000 |
commit | 0604972bb653e4fcf1a3267be9921b11d1cd6f47 (patch) | |
tree | 5d8a3754e1c3083622f0e8bbdb693bab0e180a61 /sys/dev/pci/ami_pci.c | |
parent | ac6f9473ed5ebb4ce500676d55ae486ec362b77f (diff) |
dig lsi/symbios sata boards; reported and tesing by pailloncy@ifrance.com
Diffstat (limited to 'sys/dev/pci/ami_pci.c')
-rw-r--r-- | sys/dev/pci/ami_pci.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/pci/ami_pci.c b/sys/dev/pci/ami_pci.c index 69454f32c5b..68036f26c08 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.18 2003/06/02 19:24:22 mickey Exp $ */ +/* $OpenBSD: ami_pci.c,v 1.19 2004/02/28 02:03:34 mickey Exp $ */ /* * Copyright (c) 2001 Michael Shalayeff @@ -82,6 +82,7 @@ struct ami_pci_device { { PCI_VENDOR_DELL, PCI_PRODUCT_DELL_PERC_4DI, 0 }, { PCI_VENDOR_DELL, PCI_PRODUCT_DELL_PERC_4DI_2, 0 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_80960RP_ATU, AMI_CHECK_SIGN }, + { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID, 0 }, { 0 } }; @@ -99,6 +100,7 @@ struct ami_pci_subsys { { 0x10c7103c, "HP T5/T6" }, { 0x10cc103c, "HP T7" }, { 0x10cd103c, "HP 466" }, + { 0x45231000, "LSI 523" }, { 0 } }; @@ -110,6 +112,7 @@ struct ami_pci_vendor { { 0x101e, "AMI" }, { 0x1028, "Dell" }, { 0x103c, "HP" }, + { 0x1000, "LSI" }, { 0 } }; @@ -224,7 +227,7 @@ ami_pci_attach(parent, self, aux) if (!model) { const struct ami_pci_vendor *vp; - static char modelbuf[12]; + static char modelbuf[32]; for (vp = ami_pci_vendors; vp->id && vp->id != (csr & 0xffff); vp++); |