diff options
author | Richard Lowe <richlowe@richlowe.net> | 2011-05-16 02:17:29 +0100 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2011-05-16 02:17:29 +0100 |
commit | a02e811112768aaf0fd2fb84f9a8d8261a295368 (patch) | |
tree | 81bac8e8d0330483c3bb491701fef382f44ccedd /usr/src | |
parent | 61bb40ed88d2b0deb9ccb8f6626ace833fadc137 (diff) | |
download | illumos-joyent-a02e811112768aaf0fd2fb84f9a8d8261a295368.tar.gz |
1654 pmcs should set (now) reserved INQUIRY device type modifier to 0
Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com>
Reviewed by: Dan McDonald <danmcd@nexenta.com>
Reviewed by: Albert Lee <trisk@nexenta.com>
Reviewed by: Garrett D'Amore <garrett@nexenta.com>
Approved by: Gordon Ross <gwr@nexenta.com>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_sata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_sata.c b/usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_sata.c index 78c3a8983e..03e632e161 100644 --- a/usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_sata.c +++ b/usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_sata.c @@ -278,7 +278,7 @@ pmcs_sata_special_work(pmcs_hw_t *pwp, pmcs_xscsi_t *xp) } } else { inqp = (struct scsi_inquiry *)rp; - inqp->inq_qual = (LE_16(id->word0) & 0x80) ? 0x80 : 0; + inqp->inq_qual = 0; inqp->inq_ansi = 5; /* spc3 */ inqp->inq_rdf = 2; /* response format 2 */ inqp->inq_len = 32; |