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-Tag: v5.4.126~55 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=3e9aa125f69c0006d10f101898932acedc942b59;p=users%2Fdwmw2%2Flinux.git nvme-tcp: remove incorrect Kconfig dep in BLK_DEV_NVME [ Upstream commit 042a3eaad6daeabcfaf163aa44da8ea3cf8b5496 ] We need to select NVME_CORE. Signed-off-by: Sagi Grimberg Reviewed-by: Max Gurtovoy Reviewed-by: Chaitanya Kulkarni Signed-off-by: Christoph Hellwig Signed-off-by: Sasha Levin --- diff --git a/drivers/nvme/host/Kconfig b/drivers/nvme/host/Kconfig index 7b3f6555e67ba..cf0ae71c489ea 100644 --- a/drivers/nvme/host/Kconfig +++ b/drivers/nvme/host/Kconfig @@ -62,7 +62,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