From 3f208e1a99203c8ff257202a2e8447cc43a666c9 Mon Sep 17 00:00:00 2001 From: Daniel Palmer Date: Sat, 27 Dec 2025 19:59:46 +0900 Subject: [PATCH] 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 --- drivers/mmc/Kconfig | 1 + 1 file changed, 1 insertion(+) 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.