diff options
author | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-12-30 11:20:24 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-12-30 14:09:12 -0500 |
commit | 58daa68a8fd4a373092df9035fdccaa29420f1e6 (patch) | |
tree | 352682ed8b8dc36f63700c37f9cacf1958039456 /drivers/scsi/cxgb3i | |
parent | 56b854bb314084396d3d3138126496d330943559 (diff) |
[SCSI] cxgb3i: fix select/depend problem
cxgb3i requires the cxgb3 net driver, so it selects it. However,
cxgb3 has dependencies which the select cannot see. Fix this by
separating out the cxgb3 dependencies into a separate hidden config
option (CONFIG_CHELSIO_T3_DEPENDS) and make both cxgb3 and cxgb3i
depend on it.
Reported-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Karen Xie <kxie@chelsio.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/cxgb3i')
-rw-r--r-- | drivers/scsi/cxgb3i/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/cxgb3i/Kconfig b/drivers/scsi/cxgb3i/Kconfig index 276281460ece..bfdcaf5c9c57 100644 --- a/drivers/scsi/cxgb3i/Kconfig +++ b/drivers/scsi/cxgb3i/Kconfig | |||
@@ -1,5 +1,6 @@ | |||
1 | config SCSI_CXGB3_ISCSI | 1 | config SCSI_CXGB3_ISCSI |
2 | tristate "Chelsio S3xx iSCSI support" | 2 | tristate "Chelsio S3xx iSCSI support" |
3 | depends on CHELSIO_T3_DEPENDS | ||
3 | select CHELSIO_T3 | 4 | select CHELSIO_T3 |
4 | select SCSI_ISCSI_ATTRS | 5 | select SCSI_ISCSI_ATTRS |
5 | ---help--- | 6 | ---help--- |