diff options
| author | Justin T. Gibbs <gibbs@FreeBSD.org> | 1996-02-18 07:44:16 +0000 |
|---|---|---|
| committer | Justin T. Gibbs <gibbs@FreeBSD.org> | 1996-02-18 07:44:16 +0000 |
| commit | 4e964f34ea9feeb60ee88f5c9160ea5819ffa1fe (patch) | |
| tree | 10649b44707d2cfea03723a8ff84d1f9b101d5bb /sys | |
| parent | e9ee430593db3b8476dc1833fc928543861bc9eb (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/pci/bt9xx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/pci/bt9xx.c b/sys/pci/bt9xx.c index 319705f843d1..a9d22293fde4 100644 --- a/sys/pci/bt9xx.c +++ b/sys/pci/bt9xx.c @@ -19,7 +19,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: bt9xx.c,v 1.5 1996/02/12 17:00:39 gibbs Exp $ + * $Id: bt9xx.c,v 1.6 1996/02/16 17:24:19 gibbs Exp $ */ #include <pci.h> @@ -36,6 +36,7 @@ /* XXX Need more device IDs */ #define PCI_DEVICE_ID_BUSLOGIC_946 0x1040104Bul +#define PCI_DEVICE_ID_BUSLOGIC_946_OLD 0x0140104Bul static char* bt_pci_probe __P((pcici_t tag, pcidi_t type)); static void bt_pci_attach __P((pcici_t config_id, int unit)); @@ -54,6 +55,7 @@ static char* bt_pci_probe (pcici_t tag, pcidi_t type) { switch(type) { + case PCI_DEVICE_ID_BUSLOGIC_946_OLD: case PCI_DEVICE_ID_BUSLOGIC_946: return ("Buslogic 946 SCSI host adapter"); break; |
