diff options
| author | Dmitrii Merkurev <[email protected]> | 2025-11-21 11:53:32 +0100 |
|---|---|---|
| committer | Mattijs Korpershoek <[email protected]> | 2025-11-24 10:51:17 +0100 |
| commit | b63e85705d2c25a46b38db891a7957b5c6b8d263 (patch) | |
| tree | d4342637b1e312cee34f39551eff6b0df78e7db8 /drivers/fastboot/Makefile | |
| parent | 4bf92b541af628d899ea1dadf9147baa3482967a (diff) | |
fastboot: blk: switch emmc to use the block helpers
Switch the mmc backend to this new shared block helpers,
reducing block logic and only leaving MMC specific logic.
Signed-off-by: Dmitrii Merkurev <[email protected]>
Reviewed-by: Mattijs Korpershoek <[email protected]>
Tested-by: Mattijs Korpershoek <[email protected]>
Signed-off-by: Neil Armstrong <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mattijs Korpershoek <[email protected]>
Diffstat (limited to 'drivers/fastboot/Makefile')
| -rw-r--r-- | drivers/fastboot/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/fastboot/Makefile b/drivers/fastboot/Makefile index adedba0bf24..e4c97d45997 100644 --- a/drivers/fastboot/Makefile +++ b/drivers/fastboot/Makefile @@ -3,6 +3,7 @@ obj-y += fb_common.o obj-y += fb_getvar.o obj-y += fb_command.o -obj-$(CONFIG_FASTBOOT_FLASH_MMC) += fb_mmc.o +# MMC reuses block implementation +obj-$(CONFIG_FASTBOOT_FLASH_MMC) += fb_block.o fb_mmc.o obj-$(CONFIG_FASTBOOT_FLASH_NAND) += fb_nand.o obj-$(CONFIG_FASTBOOT_FLASH_SPI) += fb_spi_flash.o |
