diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-12-31 20:24:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-12-31 20:24:06 +0000 |
commit | 988b7b9579b4898697a129ad0f85a067af54bb3a (patch) | |
tree | a93c0c4afad78e2143ce509a43245f8b6fe44e2e /sys | |
parent | 4ad0b097c842a8435432bdb18d3c9ba0503793ba (diff) |
Add SDEV_NOLUNS quirk for NEC CD-ROM DRIVE:501
Diffstat (limited to 'sys')
-rw-r--r-- | sys/scsi/scsiconf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c index 24ff595926f..33e21a78de9 100644 --- a/sys/scsi/scsiconf.c +++ b/sys/scsi/scsiconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.c,v 1.48 1999/12/16 05:17:36 mjacob Exp $ */ +/* $OpenBSD: scsiconf.c,v 1.49 1999/12/31 20:24:05 millert Exp $ */ /* $NetBSD: scsiconf.c,v 1.57 1996/05/02 01:09:01 neil Exp $ */ /* @@ -338,6 +338,8 @@ struct scsi_quirk_inquiry_pattern scsi_quirk_patterns[] = { {{T_CDROM, T_REMOV, "NEC ", "CD-ROM DRIVE:210", "1.0"}, SDEV_NOLUNS}, {{T_CDROM, T_REMOV, + "NEC ", "CD-ROM DRIVE:501", ""}, SDEV_NOLUNS}, + {{T_CDROM, T_REMOV, "NEC ", "CD-ROM DRIVE:841", ""}, SDEV_NOLUNS}, {{T_CDROM, T_REMOV, "PIONEER ", "CD-ROM DR-124X ", "1.01"}, SDEV_NOLUNS}, |