diff options
author | Greg Thelen <gthelen@google.com> | 2018-04-26 21:19:30 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2018-04-27 18:15:43 +0300 |
commit | 3af7a156bdc356946098e13180be66b6420619bf (patch) | |
tree | e7a09dce1716881582a1069e2adc0fd2815281dc /drivers/nvme | |
parent | 444261ca6ff201fa03de97a5041237e67a9d8d31 (diff) | |
download | linux-3af7a156bdc356946098e13180be66b6420619bf.tar.xz |
nvme: depend on INFINIBAND_ADDR_TRANS
NVME_RDMA code depends on INFINIBAND_ADDR_TRANS provided symbols. So
declare the kconfig dependency. This is necessary to allow for enabling
INFINIBAND without INFINIBAND_ADDR_TRANS.
Signed-off-by: Greg Thelen <gthelen@google.com>
Cc: Tarick Bedeir <tarick@google.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/Kconfig b/drivers/nvme/host/Kconfig index b979cf3bce65..88a8b5916624 100644 --- a/drivers/nvme/host/Kconfig +++ b/drivers/nvme/host/Kconfig @@ -27,7 +27,7 @@ config NVME_FABRICS config NVME_RDMA tristate "NVM Express over Fabrics RDMA host driver" - depends on INFINIBAND && BLOCK + depends on INFINIBAND && INFINIBAND_ADDR_TRANS && BLOCK select NVME_CORE select NVME_FABRICS select SG_POOL |