diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-10-08 04:54:37 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-10-08 04:54:37 +0000 |
commit | 6c4ac81bbeb17c7d916b32b4d241a31a71099241 (patch) | |
tree | 5a619953391a4bc69f7f2fd296072c58d643f275 | |
parent | 7bfd7b85bad8ad421eaf572aeeb74522b0ff03ae (diff) |
Also attach to boards with the PCI Express Fibre Channel FC949E chipset.
"go go go" dlg@
-rw-r--r-- | share/man/man4/mpi.4 | 7 | ||||
-rw-r--r-- | sys/dev/pci/mpi_pci.c | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/share/man/man4/mpi.4 b/share/man/man4/mpi.4 index 9f0c8118a83..1978487fbd4 100644 --- a/share/man/man4/mpi.4 +++ b/share/man/man4/mpi.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mpi.4,v 1.11 2006/07/19 11:01:45 jmc Exp $ +.\" $OpenBSD: mpi.4,v 1.12 2006/10/08 04:54:36 brad Exp $ .\" .\" Copyright (c) 2006 David Gwynne <dlg@openbsd.org> .\" @@ -43,6 +43,7 @@ LSIFC919X, LSIFC929, LSIFC929X, LSIFC949, +LSIFC949E, LSIFC949X, LSISAS1064, LSISAS1064E, @@ -82,8 +83,12 @@ LSI7102XP, LSI7202CP-LC, LSI7202XP, LSI7402XP, +LSI7104EP-LC, LSI7104XP-LC, +LSI7202EP-LC, +LSI7204EP-LC, LSI7204XP-LC, +LSI7404EP-LC, LSI7404XP-LC, LSISAS3041E-R, LSISAS3041X-R, diff --git a/sys/dev/pci/mpi_pci.c b/sys/dev/pci/mpi_pci.c index 3f48c2479df..a082e4f818a 100644 --- a/sys/dev/pci/mpi_pci.c +++ b/sys/dev/pci/mpi_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpi_pci.c,v 1.12 2006/08/10 00:48:47 dlg Exp $ */ +/* $OpenBSD: mpi_pci.c,v 1.13 2006/10/08 04:54:36 brad Exp $ */ /* * Copyright (c) 2005 David Gwynne <dlg@openbsd.org> @@ -67,6 +67,7 @@ static const struct pci_matchid mpi_devices[] = { { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929_1 }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929X }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC939X }, + { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC949E }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC949X }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064 }, { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064A }, |