Add 909A PCI id.

MFC after:	2 days
This commit is contained in:
Matt Jacob 2002-08-30 02:35:31 +00:00
parent 8d4ee0ece1
commit eae4a35f9f

View File

@ -1,6 +1,6 @@
/* $FreeBSD$ */
/*
* PCI specific probe and attach routines for LSI '909 FC adapters.
* PCI specific probe and attach routines for LSI Fusion Adapters
* FreeBSD Version.
*
* Copyright (c) 2000, 2001 by Greg Ansley
@ -57,6 +57,10 @@
#define PCI_PRODUCT_LSI_FC909 0x0620
#endif
#ifndef PCI_PRODUCT_LSI_FC909A
#define PCI_PRODUCT_LSI_FC909A 0x0621
#endif
#ifndef PCI_PRODUCT_LSI_FC929
#define PCI_PRODUCT_LSI_FC929 0x0622
#endif
@ -136,6 +140,9 @@ mpt_probe(device_t dev)
case PCI_PRODUCT_LSI_FC909:
desc = "LSILogic FC909 FC Adapter";
break;
case PCI_PRODUCT_LSI_FC909A:
desc = "LSILogic FC909A FC Adapter";
break;
case PCI_PRODUCT_LSI_FC929:
desc = "LSILogic FC929 FC Adapter";
break;
@ -239,6 +246,7 @@ mpt_attach(device_t dev)
bzero(mpt, sizeof (mpt_softc_t));
switch ((pci_get_device(dev) & ~1)) {
case PCI_PRODUCT_LSI_FC909:
case PCI_PRODUCT_LSI_FC909A:
case PCI_PRODUCT_LSI_FC929:
mpt->is_fc = 1;
break;