mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
6a38792ca8
There are other kconfig symbols which use SCSI_FC_ATTRS. In order to maintain sanity and prevent kconfig warnings, change all of these from using 'select' to using 'depends on' so that proper symbol dependencies will be honored and circular depends problems will be avoided. This fixes kconfig warnings and build errors: warning: (LIBFC && SCSI_IBMVFC && SCSI_QLA_FC && SCSI_LPFC && ZFCP && SCSI_BFA_FC && SCSI_CHELSIO_FCOE && FUSION_FC) selects SCSI_FC_ATTRS which has unmet direct dependencies (SCSI && NET) drivers/scsi/scsi_transport_fc.c: In function 'fc_host_post_event': drivers/scsi/scsi_transport_fc.c:543:7: error: 'scsi_nl_sock' undeclared (first use in this function) drivers/scsi/scsi_transport_fc.c: In function 'fc_host_post_vendor_event': drivers/scsi/scsi_transport_fc.c:611:7: error: 'scsi_nl_sock' undeclared (first use in this function) Reported-by: Fengguang Wu <fengguang.wu@intel.com> [0-day test robot] Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: David S. Miller <davem@davemloft.net>
19 lines
623 B
Text
19 lines
623 B
Text
config SCSI_CHELSIO_FCOE
|
|
tristate "Chelsio Communications FCoE support"
|
|
depends on PCI && SCSI
|
|
depends on SCSI_FC_ATTRS
|
|
select FW_LOADER
|
|
help
|
|
This driver supports FCoE Offload functionality over
|
|
Chelsio T4-based 10Gb Converged Network Adapters.
|
|
|
|
For general information about Chelsio and our products, visit
|
|
our website at <http://www.chelsio.com>.
|
|
|
|
For customer support, please visit our customer support page at
|
|
<http://www.chelsio.com/support.html>.
|
|
|
|
Please send feedback to <linux-bugs@chelsio.com>.
|
|
|
|
To compile this driver as a module choose M here; the module
|
|
will be called csiostor.
|