aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/scsi/scsi_scan.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c
index d91d268dd331..3ccaa4be92d8 100644
--- a/drivers/scsi/scsi_scan.c
+++ b/drivers/scsi/scsi_scan.c
@@ -1549,6 +1549,9 @@ void scsi_scan_target(struct device *parent, unsigned int channel,
1549{ 1549{
1550 struct Scsi_Host *shost = dev_to_shost(parent); 1550 struct Scsi_Host *shost = dev_to_shost(parent);
1551 1551
1552 if (strncmp(scsi_scan_type, "none", 4) == 0)
1553 return;
1554
1552 if (!shost->async_scan) 1555 if (!shost->async_scan)
1553 scsi_complete_async_scans(); 1556 scsi_complete_async_scans();
1554 1557