diff options
| author | Scott Long <scottl@FreeBSD.org> | 2002-11-30 18:00:43 +0000 |
|---|---|---|
| committer | Scott Long <scottl@FreeBSD.org> | 2002-11-30 18:00:43 +0000 |
| commit | b8e89ffabc26f795ed1d97306ae4201450ce4541 (patch) | |
| tree | 66e9d6f43fa8af943dc64bf31d79553fe8a48d88 | |
| parent | 0d51d232e5107bf978170478cec35b494ce2abbb (diff) | |
Notes
| -rw-r--r-- | sys/dev/aic7xxx/aic7770.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/sys/dev/aic7xxx/aic7770.c b/sys/dev/aic7xxx/aic7770.c index e15c9694f58a..5229eb2cdafa 100644 --- a/sys/dev/aic7xxx/aic7770.c +++ b/sys/dev/aic7xxx/aic7770.c @@ -37,7 +37,7 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGES. * - * $Id: //depot/aic7xxx/aic7xxx/aic7770.c#26 $ + * $Id: //depot/aic7xxx/aic7xxx/aic7770.c#27 $ * * $FreeBSD$ */ @@ -56,6 +56,8 @@ #define ID_AHA_274x 0x04907771 #define ID_AHA_284xB 0x04907756 /* BIOS enabled */ #define ID_AHA_284x 0x04907757 /* BIOS disabled*/ +#define ID_OLV_274x 0x04907782 /* Olivetti OEM */ +#define ID_OLV_274xD 0x04907783 /* Olivetti OEM (Differential) */ static int aha2840_load_seeprom(struct ahc_softc *ahc); static ahc_device_setup_t ahc_aic7770_VL_setup; @@ -77,6 +79,18 @@ struct aic7770_identity aic7770_ident_table [] = "Adaptec 284X SCSI adapter", ahc_aic7770_VL_setup }, + { + ID_OLV_274x, + 0xFFFFFFFF, + "Adaptec (Olivetti OEM) 274X SCSI adapter", + ahc_aic7770_EISA_setup + }, + { + ID_OLV_274xD, + 0xFFFFFFFF, + "Adaptec (Olivetti OEM) 274X Differential SCSI adapter", + ahc_aic7770_EISA_setup + }, /* Generic chip probes for devices we don't know 'exactly' */ { ID_AIC7770, |
