mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
scsi: ses: Fix SAS device detection in enclosure
The call to scsi_is_sas_rphy() needs to be made on the SAS end_device,
not on the SCSI device.
Fixes: 835831c57e
("ses: use scsi_is_sas_rphy instead of is_sas_attached")
Signed-off-by: Ewan D. Milne <emilne@redhat.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Reviewed-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
67d35e70af
commit
9373eba6cf
@ -587,7 +587,7 @@ static void ses_match_to_enclosure(struct enclosure_device *edev,
|
||||
|
||||
ses_enclosure_data_process(edev, to_scsi_device(edev->edev.parent), 0);
|
||||
|
||||
if (scsi_is_sas_rphy(&sdev->sdev_gendev))
|
||||
if (scsi_is_sas_rphy(sdev->sdev_target->dev.parent))
|
||||
efd.addr = sas_get_address(sdev);
|
||||
|
||||
if (efd.addr) {
|
||||
|
Loading…
Reference in New Issue
Block a user