From 4e964f34ea9feeb60ee88f5c9160ea5819ffa1fe Mon Sep 17 00:00:00 2001 From: "Justin T. Gibbs" Date: Sun, 18 Feb 1996 07:44:16 +0000 Subject: [PATCH] Add PCI ID for older revision Buslogic 946 cards Submitted by: greg@greg.rim.or.jp --- sys/pci/bt9xx.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/pci/bt9xx.c b/sys/pci/bt9xx.c index 319705f843d..a9d22293fde 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 @@ -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;