diff mbox series

[2/3] spl: nvme: Make this depend on SPL_BLK

Message ID 20240605013742.576403-2-trini@konsulko.com
State Accepted
Commit 9c9e667965de7c1c7ff353144e7188c8425c67d5
Delegated to: Tom Rini
Headers show
Series [1/3] efi_loader: select BLK not depends on BLK | expand

Commit Message

Tom Rini June 5, 2024, 1:37 a.m. UTC
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>
---
 common/spl/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index 6405374bcc12..80c80d9904fd 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