summaryrefslogtreecommitdiff
path: root/drivers/block
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2023-11-12 13:03:47 -0700
committerTom Rini <[email protected]>2023-11-16 18:59:58 -0500
commitb83fae673a9cd9795e531883936c1468e75510a5 (patch)
tree369b2eda6265669d2231ac15bfd7ca7935ce54f0 /drivers/block
parenta07408384bc572a93ce1f56a48e9de7878d660f8 (diff)
blk: Drop reference to DM_SPL
The intent here is to only allow SPL_LEGACY_BLK if !SPL_DM - i.e. that when driver model is enabled in SPL, legacy block cannot be used. However this combination is used by about 240 boards, so we cannot disallow it, at least not yet. So just drop the condition. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/block')
-rw-r--r--drivers/block/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig
index b897cf1a3d1..6ad18889f61 100644
--- a/drivers/block/Kconfig
+++ b/drivers/block/Kconfig
@@ -13,7 +13,7 @@ config BLK
config SPL_LEGACY_BLOCK
bool # "Enable Legacy Block Device"
- depends on SPL && !DM_SPL
+ depends on SPL
default y if SPL_MMC || SPL_USB_STORAGE || SCSI || NVME || IDE
default y if SPL_AHCI_PCI
help