From: Daniel Palmer Date: Sat, 27 Dec 2025 10:59:46 +0000 (+0900) Subject: mmc: mmc_spi: Select CRC16 if CRC checking is enabled X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f208e1a99203c8ff257202a2e8447cc43a666c9;p=thirdparty%2Fu-boot.git mmc: mmc_spi: Select CRC16 if CRC checking is enabled Currently CRC16 is not selected when CRC checking is enabled and if it wasn't enabled in the config otherwise the build will fail because of references to crc16_ccitt() that doesn't exist. Signed-off-by: Daniel Palmer Signed-off-by: Peng Fan --- diff --git a/drivers/mmc/Kconfig b/drivers/mmc/Kconfig index 4c46df0ffb8..39caf2eff1b 100644 --- a/drivers/mmc/Kconfig +++ b/drivers/mmc/Kconfig @@ -91,6 +91,7 @@ config MMC_SPI_CRC_ON bool "Support CRC for SPI-based MMC controller" depends on MMC_SPI default y + select CRC16 help This enables CRC for SPI-based MMC controllers.