From: Sagi Grimberg Date: Fri, 21 May 2021 21:51:15 +0000 (-0700) Subject: nvme-tcp: remove incorrect Kconfig dep in BLK_DEV_NVME X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=042a3eaad6daeabcfaf163aa44da8ea3cf8b5496;p=linux.git nvme-tcp: remove incorrect Kconfig dep in BLK_DEV_NVME We need to select NVME_CORE. Signed-off-by: Sagi Grimberg Reviewed-by: Max Gurtovoy Reviewed-by: Chaitanya Kulkarni Signed-off-by: Christoph Hellwig --- diff --git a/drivers/nvme/host/Kconfig b/drivers/nvme/host/Kconfig index a44d49d63968a..494675aeaaad7 100644 --- a/drivers/nvme/host/Kconfig +++ b/drivers/nvme/host/Kconfig @@ -71,7 +71,8 @@ config NVME_FC config NVME_TCP tristate "NVM Express over Fabrics TCP host driver" depends on INET - depends on BLK_DEV_NVME + depends on BLOCK + select NVME_CORE select NVME_FABRICS select CRYPTO select CRYPTO_CRC32C