Skip to content

Commit

Permalink
[SCSI] Fix dependency problems in SCSI drivers
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
James Bottomley authored and James Bottomley committed Mar 9, 2008
1 parent 951b62c commit 67951f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/scsi/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 67951f6

Please sign in to comment.