aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx/Kconfig
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2014-09-22 13:14:33 -0400
committerDavid S. Miller <davem@davemloft.net>2014-09-22 13:14:33 -0400
commitdf568d8e5250bf24e38c69ad4374baf0f8d279ba (patch)
tree8d6587e57c6765a4586edaa8738d6f115e2cc501 /drivers/scsi/qla2xxx/Kconfig
parentMerge tag 'linux-can-fixes-for-3.17-20140918' of git://gitorious.org/linux-can/linux-can (diff)
downloadlinux-dev-df568d8e5250bf24e38c69ad4374baf0f8d279ba.tar.xz
linux-dev-df568d8e5250bf24e38c69ad4374baf0f8d279ba.zip
scsi: Use 'depends' with LIBFC instead of 'select'.
LIBFC depends upon SCSI_FC_ATTRS and select's CRC32C. The only alternative would be to 'select' CRC32C and all of SCSI_FC_ATTRS direct and indirect dependencies in the Kconfig section for every LIBFCOE user which makes little sense. Subsequently, use 'depends' instead of 'select' for LIBFCOE too. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/scsi/qla2xxx/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/Kconfig b/drivers/scsi/qla2xxx/Kconfig
index 7d65776a1df5..113e6c9826a1 100644
--- a/drivers/scsi/qla2xxx/Kconfig
+++ b/drivers/scsi/qla2xxx/Kconfig
@@ -31,7 +31,7 @@ config SCSI_QLA_FC
config TCM_QLA2XXX
tristate "TCM_QLA2XXX fabric module for Qlogic 2xxx series target mode HBAs"
depends on SCSI_QLA_FC && TARGET_CORE
- select LIBFC
+ depends on LIBFC
select BTREE
default n
---help---