diff options
-rw-r--r-- | drivers/scsi/libata-scsi.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/scsi/libata-scsi.c b/drivers/scsi/libata-scsi.c index 4fc0134d4272..8295a656e521 100644 --- a/drivers/scsi/libata-scsi.c +++ b/drivers/scsi/libata-scsi.c | |||
@@ -1680,13 +1680,17 @@ void ata_scsi_simulate(u16 *id, | |||
1680 | 1680 | ||
1681 | void ata_scsi_scan_host(struct ata_port *ap) | 1681 | void ata_scsi_scan_host(struct ata_port *ap) |
1682 | { | 1682 | { |
1683 | struct ata_device *dev; | ||
1683 | unsigned int i; | 1684 | unsigned int i; |
1684 | 1685 | ||
1685 | if (ap->flags & ATA_FLAG_PORT_DISABLED) | 1686 | if (ap->flags & ATA_FLAG_PORT_DISABLED) |
1686 | return; | 1687 | return; |
1687 | 1688 | ||
1688 | for (i = 0; i < ATA_MAX_DEVICES; i++) | 1689 | for (i = 0; i < ATA_MAX_DEVICES; i++) { |
1689 | if (ata_dev_present(&ap->device[i])) | 1690 | dev = &ap->device[i]; |
1690 | scsi_scan_target(&ap->host->shost_gendev, 0, i, ~0, 0); | 1691 | |
1692 | if (ata_dev_present(dev)) | ||
1693 | scsi_scan_target(&ap->host->shost_gendev, 0, i, 0, 0); | ||
1694 | } | ||
1691 | } | 1695 | } |
1692 | 1696 | ||