diff options
| author | Justin T. Gibbs <gibbs@FreeBSD.org> | 1995-01-16 16:31:57 +0000 |
|---|---|---|
| committer | Justin T. Gibbs <gibbs@FreeBSD.org> | 1995-01-16 16:31:57 +0000 |
| commit | 344e176820b0b59e31882238c3e2d2de5455860a (patch) | |
| tree | 1ba798b57d159886ec9a75d76e60c682aa50dd23 | |
| parent | f61afda9a48abaca918ee883587edaae0ed373c2 (diff) | |
Notes
| -rw-r--r-- | sys/i386/pci/aic7870.c | 7 | ||||
| -rw-r--r-- | sys/pci/aic7870.c | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/sys/i386/pci/aic7870.c b/sys/i386/pci/aic7870.c index d404420fb9aa..3f9c2874920a 100644 --- a/sys/i386/pci/aic7870.c +++ b/sys/i386/pci/aic7870.c @@ -18,6 +18,8 @@ * Justin T. Gibbs. * 4. Modifications may be freely made to this file if the above conditions * are met. + * + * $Id$ */ #include <pci.h> @@ -31,6 +33,7 @@ #define PCI_BASEADR0 PCI_MAP_REG_START #define PCI_DEVICE_ID_ADAPTEC_2940 0x71789004ul +#define PCI_DEVICE_ID_ADAPTEC_2940_MB 0x70789004ul static char* aic7870_probe __P((pcici_t tag, pcidi_t type)); void aic7870_attach __P((pcici_t config_id, int unit)); @@ -50,6 +53,10 @@ 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"); + break; default: break; } diff --git a/sys/pci/aic7870.c b/sys/pci/aic7870.c index d404420fb9aa..3f9c2874920a 100644 --- a/sys/pci/aic7870.c +++ b/sys/pci/aic7870.c @@ -18,6 +18,8 @@ * Justin T. Gibbs. * 4. Modifications may be freely made to this file if the above conditions * are met. + * + * $Id$ */ #include <pci.h> @@ -31,6 +33,7 @@ #define PCI_BASEADR0 PCI_MAP_REG_START #define PCI_DEVICE_ID_ADAPTEC_2940 0x71789004ul +#define PCI_DEVICE_ID_ADAPTEC_2940_MB 0x70789004ul static char* aic7870_probe __P((pcici_t tag, pcidi_t type)); void aic7870_attach __P((pcici_t config_id, int unit)); @@ -50,6 +53,10 @@ 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"); + break; default: break; } |
