diff options
author | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-03-07 00:32:06 +0300 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-03-09 03:30:19 +0300 |
commit | 67951f63807328b81e45c3c87af049c55c0a0081 (patch) | |
tree | 539ad11675df47ca42463df753e62a5c56a6f713 /drivers/scsi/Kconfig | |
parent | 951b62c11e86acf8c55d9828aa8c921575023c29 (diff) | |
download | linux-67951f63807328b81e45c3c87af049c55c0a0081.tar.xz |
[SCSI] Fix dependency problems in SCSI drivers
We have several drivers that don't list SCSI as a dependency in
Kconfig. That leads to them potentially being selected as Y even if
SCSI is M (which will produce a build failure). Fix this by making
the if SCSI_LOWLEVEL that goes around all the drivers a tristate
forcing them all automatically to inherit the value of SCSI.
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/Kconfig')
-rw-r--r-- | drivers/scsi/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig index c46666a24809..b9d374082b65 100644 --- a/drivers/scsi/Kconfig +++ b/drivers/scsi/Kconfig @@ -325,7 +325,7 @@ menuconfig SCSI_LOWLEVEL depends on SCSI!=n default y -if SCSI_LOWLEVEL +if SCSI_LOWLEVEL && SCSI config ISCSI_TCP tristate "iSCSI Initiator over TCP/IP" |