From: Tom Rini <trini@konsulko.com>
Date: Wed, 5 Jun 2024 01:37:41 +0000 (-0600)
Subject: spl: nvme: Make this depend on SPL_BLK
X-Git-Tag: v2025.01-rc5-pxa1908~398^2~46^2~1
X-Git-Url: http://git.dujemihanovic.xyz/img/html/static/login.html?a=commitdiff_plain;h=9c9e667965de7c1c7ff353144e7188c8425c67d5;p=u-boot.git

spl: nvme: Make this depend on SPL_BLK

As this is an SPL related driver, and in SPL enabling SPL_BLK is
optional, make this depend on the correct symbol.

Signed-off-by: Tom Rini <trini@konsulko.com>
---

diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index 6405374bcc..80c80d9904 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -1293,7 +1293,7 @@ config SPL_SATA_RAW_U_BOOT_SECTOR
 
 config SPL_NVME
 	bool "NVM Express device support"
-	depends on BLK
+	depends on SPL_BLK
 	select FS_LOADER
 	select SPL_BLK_FS
 	help