[66] in linux-scsi channel archive
Toshiba 3401
daemon@ATHENA.MIT.EDU (Leonard N. Zubkoff)
Sun Feb 5 14:49:12 1995
Date: Sun, 5 Feb 1995 10:59:01 -0800
From: "Leonard N. Zubkoff" <lnz@dandelion.com>
To: linux-scsi@vger.rutgers.edu
Someone asked for the following code to be added to scsi.c, and I'd like to
find out who so that we can discuss what problem this is meant to address:
/*
* Unfortunately the Toshiba CD-ROM XM-3401TA doesn't
* understand the vendor specific mode select/sense
* commands which are used by the photo cd routines in
* sr.c.
*/
SDpnt->manufacturer = SCSI_MAN_UNKNOWN;
if (!strncmp(scsi_result+8,"NEC",3))
SDpnt->manufacturer = SCSI_MAN_NEC;
if (!strncmp(scsi_result+8,"TOSHIBA",7) &&
strncmp(scsi_result+16,"CD-ROM XM-3401TA",16) &&
strncmp(scsi_result+32,"3593",4))
SDpnt->manufacturer = SCSI_MAN_TOSHIBA;
Any takers? I have the Toshiba 3401 documentation so perhaps we can clear this
up.
Leonard