aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/scsi/Kconfig6
-rw-r--r--drivers/scsi/Makefile2
2 files changed, 7 insertions, 1 deletions
diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
index 4cd280e86966..f3bc0f459dea 100644
--- a/drivers/scsi/Kconfig
+++ b/drivers/scsi/Kconfig
@@ -241,6 +241,12 @@ config SCSI_SCAN_ASYNC
241 You can override this choice by specifying "scsi_mod.scan=sync" 241 You can override this choice by specifying "scsi_mod.scan=sync"
242 or async on the kernel's command line. 242 or async on the kernel's command line.
243 243
244config SCSI_WAIT_SCAN
245 tristate
246 default m
247 depends on SCSI
248 depends on MODULES
249
244menu "SCSI Transports" 250menu "SCSI Transports"
245 depends on SCSI 251 depends on SCSI
246 252
diff --git a/drivers/scsi/Makefile b/drivers/scsi/Makefile
index 79ecf4ebe6eb..41c7883b24aa 100644
--- a/drivers/scsi/Makefile
+++ b/drivers/scsi/Makefile
@@ -145,7 +145,7 @@ obj-$(CONFIG_CHR_DEV_SCH) += ch.o
145# This goes last, so that "real" scsi devices probe earlier 145# This goes last, so that "real" scsi devices probe earlier
146obj-$(CONFIG_SCSI_DEBUG) += scsi_debug.o 146obj-$(CONFIG_SCSI_DEBUG) += scsi_debug.o
147 147
148obj-$(CONFIG_SCSI) += scsi_wait_scan.o 148obj-$(CONFIG_SCSI_WAIT_SCAN) += scsi_wait_scan.o
149 149
150scsi_mod-y += scsi.o hosts.o scsi_ioctl.o constants.o \ 150scsi_mod-y += scsi.o hosts.o scsi_ioctl.o constants.o \
151 scsicam.o scsi_error.o scsi_lib.o \ 151 scsicam.o scsi_error.o scsi_lib.o \