summaryrefslogtreecommitdiffstats
path: root/sys/i386/pci
diff options
context:
space:
mode:
authorgibbs <gibbs@FreeBSD.org>1995-01-22 00:47:50 +0000
committergibbs <gibbs@FreeBSD.org>1995-01-22 00:47:50 +0000
commit144f061bf60cca2952c1a3865cbce600ecbf64dc (patch)
treecdf046ae4f779a378d1783c11943c7263ae07813 /sys/i386/pci
parentd8e71b2594a7f4310ff2a12112abd871a6c0e869 (diff)
downloadFreeBSD-src-144f061bf60cca2952c1a3865cbce600ecbf64dc.zip
FreeBSD-src-144f061bf60cca2952c1a3865cbce600ecbf64dc.tar.gz
Change the string returned in the aic7870 motherboard probe case. Change
#define to a more appropriate name.
Diffstat (limited to 'sys/i386/pci')
-rw-r--r--sys/i386/pci/aic7870.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/i386/pci/aic7870.c b/sys/i386/pci/aic7870.c
index 3f9c287..373fea5 100644
--- a/sys/i386/pci/aic7870.c
+++ b/sys/i386/pci/aic7870.c
@@ -19,7 +19,7 @@
* 4. Modifications may be freely made to this file if the above conditions
* are met.
*
- * $Id$
+ * $Id: aic7870.c,v 1.2 1995/01/16 16:31:57 gibbs Exp $
*/
#include <pci.h>
@@ -33,7 +33,7 @@
#define PCI_BASEADR0 PCI_MAP_REG_START
#define PCI_DEVICE_ID_ADAPTEC_2940 0x71789004ul
-#define PCI_DEVICE_ID_ADAPTEC_2940_MB 0x70789004ul
+#define PCI_DEVICE_ID_ADAPTEC_AIC7870 0x70789004ul
static char* aic7870_probe __P((pcici_t tag, pcidi_t type));
void aic7870_attach __P((pcici_t config_id, int unit));
@@ -53,9 +53,8 @@ aic7870_probe (pcici_t tag, pcidi_t type)
case PCI_DEVICE_ID_ADAPTEC_2940:
return ("Adaptec 294X SCSI host adapter");
break;
- case PCI_DEVICE_ID_ADAPTEC_2940_MB:
- return ("Adaptec aic7870 SCSI host adapter"
- ": on Motherboard");
+ case PCI_DEVICE_ID_ADAPTEC_AIC7870:
+ return ("Adaptec aic7870 SCSI host adapter");
break;
default:
break;
OpenPOWER on IntegriCloud