Handle ADEV_CDROM in quirks table.
Quirk entry for another Toshiba cdrom.
This commit is contained in:
parent
8d994b82fa
commit
4ba1e04ba2
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: scsiconf.c,v 1.142 2000/05/15 16:35:49 dante Exp $ */
|
/* $NetBSD: scsiconf.c,v 1.143 2000/05/28 07:03:59 gmcgarry Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||||
|
@ -508,6 +508,8 @@ struct scsi_quirk_inquiry_pattern scsi_quirk_patterns[] = {
|
||||||
|
|
||||||
{{T_DIRECT, T_FIXED,
|
{{T_DIRECT, T_FIXED,
|
||||||
"TOSHIBA ", "CD-ROM XM-3401TA", "0283"}, ADEV_CDROM|SDEV_NOLUNS},
|
"TOSHIBA ", "CD-ROM XM-3401TA", "0283"}, ADEV_CDROM|SDEV_NOLUNS},
|
||||||
|
{{T_DIRECT, T_FIXED,
|
||||||
|
"TOSHIBA ", "CD-ROM DRIVE:XM", "1971"}, ADEV_CDROM|SDEV_NOLUNS},
|
||||||
{{T_DIRECT, T_FIXED,
|
{{T_DIRECT, T_FIXED,
|
||||||
"ADAPTEC ", "AEC-4412BD", "1.2A"}, SDEV_NOMODESENSE},
|
"ADAPTEC ", "AEC-4412BD", "1.2A"}, SDEV_NOMODESENSE},
|
||||||
{{T_DIRECT, T_FIXED,
|
{{T_DIRECT, T_FIXED,
|
||||||
|
@ -771,6 +773,14 @@ scsi_probedev(scsi, target, lun)
|
||||||
sc_link->quirks |= SDEV_NOLUNS;
|
sc_link->quirks |= SDEV_NOLUNS;
|
||||||
sc_link->scsipi_scsi.scsi_version = inqbuf.version;
|
sc_link->scsipi_scsi.scsi_version = inqbuf.version;
|
||||||
|
|
||||||
|
if (sc_link->quirks & ADEV_CDROM) {
|
||||||
|
sc_link->quirks ^= ADEV_CDROM;
|
||||||
|
inqbuf.dev_qual2 |= SID_REMOVABLE;
|
||||||
|
sa.sa_inqbuf.type = inqbuf.device = ((inqbuf.device & ~SID_REMOVABLE) | T_CDROM);
|
||||||
|
sa.sa_inqbuf.removable = T_REMOV;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
if ((sc_link->quirks & SDEV_NOLUNS) == 0)
|
if ((sc_link->quirks & SDEV_NOLUNS) == 0)
|
||||||
docontinue = 1;
|
docontinue = 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue