diff options
| -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; } |
