diff options
| author | pk <pk@NetBSD.org> | 2003-01-09 12:25:00 +0000 |
|---|---|---|
| committer | pk <pk@NetBSD.org> | 2003-01-09 12:25:00 +0000 |
| commit | d15d3cbfc0deebae82188ecb1c1d56c3d349dddd (patch) | |
| tree | 581e53b3a97d6e71c80071fcdd35ec8538dc2737 /sys/dev | |
| parent | 98449270daf83efaf9e33e748ae33a9eac04bc63 (diff) | |
Add two disks capable of doing synchronous transfer mode, but don't
report SCSI2: "MICROP 1924" and "FUJITSU M2266"
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/scsipi/scsiconf.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/scsipi/scsiconf.c b/sys/dev/scsipi/scsiconf.c index a2a4d73a4a1..b3ac99b61f0 100644 --- a/sys/dev/scsipi/scsiconf.c +++ b/sys/dev/scsipi/scsiconf.c @@ -1,4 +1,4 @@ -/* $NetBSD: scsiconf.c,v 1.196 2003/01/01 00:10:25 thorpej Exp $ */ +/* $NetBSD: scsiconf.c,v 1.197 2003/01/09 12:25:00 pk Exp $ */ /*- * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc. @@ -55,7 +55,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.196 2003/01/01 00:10:25 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.197 2003/01/09 12:25:00 pk Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -612,6 +612,10 @@ const struct scsi_quirk_inquiry_pattern scsi_quirk_patterns[] = { "Maxtor 4", "D080H4", "DAH0"}, PQUIRK_NOMODESENSE}, {{T_DIRECT, T_FIXED, /* XXX move to umass */ "Maxtor 4", "D040H2", "DAH0"}, PQUIRK_NOMODESENSE}, + {{T_DIRECT, T_FIXED, + "MICROP ", "1924", ""}, PQUIRK_CAP_SYNC}, + {{T_DIRECT, T_FIXED, + "FUJITSU ", "M2266", ""}, PQUIRK_CAP_SYNC}, {{T_DIRECT, T_REMOV, "iomega", "jaz 1GB", ""}, PQUIRK_NOMODESENSE}, |
