mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
IB: Move PCI dependency from root KConfig to HW's KConfigs
No reason to have dependency on PCI for the entire infiniband stack so move it to KConfig of only the drivers that actually using PCI. Signed-off-by: Yuval Shaia <yuval.shaia@oracle.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
8f63d4b1d5
commit
931bc0d916
7 changed files with 5 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
|||
menuconfig INFINIBAND
|
||||
tristate "InfiniBand support"
|
||||
depends on PCI || BROKEN
|
||||
depends on HAS_IOMEM
|
||||
depends on NET
|
||||
depends on INET
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
config INFINIBAND_I40IW
|
||||
tristate "Intel(R) Ethernet X722 iWARP Driver"
|
||||
depends on INET && I40E
|
||||
depends on PCI
|
||||
select GENERIC_ALLOCATOR
|
||||
---help---
|
||||
Intel(R) Ethernet X722 iWARP Driver
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
config INFINIBAND_QEDR
|
||||
tristate "QLogic RoCE driver"
|
||||
depends on 64BIT && QEDE
|
||||
depends on PCI
|
||||
select QED_LL2
|
||||
select QED_RDMA
|
||||
---help---
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
config INFINIBAND_QIB
|
||||
tristate "Intel PCIe HCA support"
|
||||
depends on 64BIT && INFINIBAND_RDMAVT
|
||||
depends on PCI
|
||||
---help---
|
||||
This is a low-level driver for Intel PCIe QLE InfiniBand host
|
||||
channel adapters. This driver does not support the Intel
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
config INFINIBAND_RDMAVT
|
||||
tristate "RDMA verbs transport library"
|
||||
depends on 64BIT
|
||||
depends on PCI
|
||||
select DMA_VIRT_OPS
|
||||
---help---
|
||||
This is a common software verbs provider for RDMA networks.
|
||||
|
|
|
@ -51,7 +51,6 @@
|
|||
#include <net/addrconf.h>
|
||||
#include <linux/inetdevice.h>
|
||||
#include <rdma/ib_cache.h>
|
||||
#include <linux/pci.h>
|
||||
|
||||
#define DRV_VERSION "1.0.0"
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ config LNET_SELFTEST
|
|||
|
||||
config LNET_XPRT_IB
|
||||
tristate "LNET infiniband support"
|
||||
depends on LNET && INFINIBAND && INFINIBAND_ADDR_TRANS
|
||||
depends on LNET && PCI && INFINIBAND && INFINIBAND_ADDR_TRANS
|
||||
default LNET && INFINIBAND
|
||||
help
|
||||
This option allows the LNET users to use infiniband as an
|
||||
|
|
Loading…
Reference in a new issue