diff options
| author | Tom Rini <[email protected]> | 2024-06-04 19:37:42 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-06-14 10:39:35 -0600 |
| commit | fd0ab46ead92268e94ad840a0f4aa314ef3e2df3 (patch) | |
| tree | 66afa6575950eb0c272366b4b91dba1bc16bb23a /drivers/block | |
| parent | 9c9e667965de7c1c7ff353144e7188c8425c67d5 (diff) | |
block: Update BLK to be def_bool
At this point in the DM migration, all platforms enable DM. BLK requires
DM. Make BLK "def_bool y" in the cases it had been "default y" to make
this clearer. Now remove the symbol requirement from other places as it
is redundant here.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers/block')
| -rw-r--r-- | drivers/block/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig index 6ad18889f61..48529a6982f 100644 --- a/drivers/block/Kconfig +++ b/drivers/block/Kconfig @@ -1,8 +1,8 @@ config BLK bool # "Support block devices" depends on DM - default y if MMC || USB || SCSI || NVME || IDE || AHCI || SATA - default y if EFI_MEDIA || VIRTIO_BLK || PVBLOCK + def_bool y if MMC || USB || SCSI || NVME || IDE || AHCI || SATA + def_bool y if EFI_MEDIA || VIRTIO_BLK || PVBLOCK help Enable support for block devices, such as SCSI, MMC and USB flash sticks. These provide a block-level interface which permits |
