diff options
author | Darrick J. Wong <djwong@us.ibm.com> | 2007-01-30 10:18:52 +0100 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-07-18 18:15:41 +0200 |
commit | 5986c3d305f497d3ff33d65e4d9ff6d00121407b (patch) | |
tree | 5c3c008f3ef68927680b530b3f81766899755946 /drivers/scsi | |
parent | [SCSI] libsas: Accept SAM_GOOD for ATAPI devices in sas_ata_task_done (diff) | |
download | linux-5986c3d305f497d3ff33d65e4d9ff6d00121407b.tar.xz linux-5986c3d305f497d3ff33d65e4d9ff6d00121407b.zip |
[SCSI] libsas: Unknown STP devices should be reported to libata as unknown.
When libsas encounters a STP device whose protocol isn't recognized (i.e.
not ATA or ATAPI), we should set the ata_device's class to ATA_DEV_UNKNOWN
instead of ATA_DEV_ATA.
Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/libsas/sas_ata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/libsas/sas_ata.c b/drivers/scsi/libsas/sas_ata.c index 004b463a1c4e..e164f58f3859 100644 --- a/drivers/scsi/libsas/sas_ata.c +++ b/drivers/scsi/libsas/sas_ata.c @@ -232,7 +232,7 @@ static void sas_ata_phy_reset(struct ata_port *ap) SAS_DPRINTK("%s: Unknown SATA command set: %d.\n", __FUNCTION__, dev->sata_dev.command_set); - ap->device[0].class = ATA_DEV_ATA; + ap->device[0].class = ATA_DEV_UNKNOWN; break; } |