diff options
author | Tom Rini <trini@konsulko.com> | 2024-06-04 19:37:41 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-06-14 10:39:35 -0600 |
commit | 9c9e667965de7c1c7ff353144e7188c8425c67d5 (patch) | |
tree | 81be0c105763d656912dedeaf942eb5184126411 /common/spl | |
parent | 66bd11ba4d5fea0ff1e5e13aadaea3345c5f91c9 (diff) | |
download | u-boot-9c9e667965de7c1c7ff353144e7188c8425c67d5.zip u-boot-9c9e667965de7c1c7ff353144e7188c8425c67d5.tar.gz u-boot-9c9e667965de7c1c7ff353144e7188c8425c67d5.tar.bz2 |
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>
Diffstat (limited to 'common/spl')
-rw-r--r-- | common/spl/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 6405374..80c80d9 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 |