Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Add recognition of LSI Logic FC919X chips, as found on



details:   https://anonhg.NetBSD.org/src/rev/23eea0071094
branches:  trunk
changeset: 572512:23eea0071094
user:      he <he%NetBSD.org@localhost>
date:      Thu Jan 06 14:58:00 2005 +0000

description:
Add recognition of LSI Logic FC919X chips, as found on
LSI Logic LSI7102XP-LC controllers.
Document FC919X and FC929X with separate entries in the man page.

diffstat:

 share/man/man4/mpt.4  |  8 +++++++-
 sys/dev/pci/mpt_pci.c |  7 +++++--
 2 files changed, 12 insertions(+), 3 deletions(-)

diffs (50 lines):

diff -r a31869c6ff93 -r 23eea0071094 share/man/man4/mpt.4
--- a/share/man/man4/mpt.4      Thu Jan 06 14:56:22 2005 +0000
+++ b/share/man/man4/mpt.4      Thu Jan 06 14:58:00 2005 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: mpt.4,v 1.1 2003/04/16 22:32:15 thorpej Exp $
+.\"    $NetBSD: mpt.4,v 1.2 2005/01/06 14:58:00 he Exp $
 .\"
 .\" Copyright (c) 2003 Wasabi Systems, Inc.
 .\" All rights reserved.
@@ -68,6 +68,12 @@
 .It
 FC929
 .Pq Dual 2Gb/s Tn Fibre Channel
+.It
+FC929X
+.Pq Dual 2Gb/s Tn Fibre Channel, PCI-X
+.It
+FC919X
+.Pq 2Gb/s Tn Fibre Channel, PCI-X
 .El
 .Sh SEE ALSO
 .Xr cd 4 ,
diff -r a31869c6ff93 -r 23eea0071094 sys/dev/pci/mpt_pci.c
--- a/sys/dev/pci/mpt_pci.c     Thu Jan 06 14:56:22 2005 +0000
+++ b/sys/dev/pci/mpt_pci.c     Thu Jan 06 14:58:00 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mpt_pci.c,v 1.3 2004/09/18 08:52:50 martin Exp $       */
+/*     $NetBSD: mpt_pci.c,v 1.4 2005/01/06 14:58:00 he Exp $   */
 
 /*
  * Copyright (c) 2003 Wasabi Systems, Inc.
@@ -42,7 +42,7 @@
  */     
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mpt_pci.c,v 1.3 2004/09/18 08:52:50 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mpt_pci.c,v 1.4 2005/01/06 14:58:00 he Exp $");
 
 #include <dev/ic/mpt.h>                        /* pulls in all headers */
 
@@ -109,6 +109,9 @@
        { PCI_VENDOR_SYMBIOS,   PCI_PRODUCT_SYMBIOS_FC929X,
          MPP_F_FC | MPP_F_DUAL,
          "LSI Logic FC929X FC Adapter" },
+       { PCI_VENDOR_SYMBIOS,   PCI_PRODUCT_SYMBIOS_FC919X,
+         MPP_F_FC,
+         "LSI Logic FC919X FC Adapter" },
 
        { 0,                    0,
          0,



Home | Main Index | Thread Index | Old Index