From 5d23810c3c6cea0326b48f5ef9faca6a8fe3ff5a Mon Sep 17 00:00:00 2001 From: Lukas Timmermann Date: Tue, 14 Oct 2025 13:40:32 +0200 Subject: [PATCH] mmc: exynos_dw_mmc: Add compatible string for Exynos5250 This driver got successfully tested with an upstream device tree and an Exynos5250. The board in question is samsung-manta (Google Nexus 10) which we are getting ready for upstream. For the u-boot port was just this additional compatible string needed. Signed-off-by: Lukas Timmermann Reviewed-by: Peng Fan Signed-off-by: Peng Fan --- drivers/mmc/exynos_dw_mmc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c index 12e37cb4b78..0597cd7f0c7 100644 --- a/drivers/mmc/exynos_dw_mmc.c +++ b/drivers/mmc/exynos_dw_mmc.c @@ -378,6 +378,9 @@ static const struct udevice_id exynos_dwmmc_ids[] = { }, { .compatible = "samsung,exynos5420-dw-mshc", .data = (ulong)&exynos5_drv_data, + }, { + .compatible = "samsung,exynos5250-dw-mshc", + .data = (ulong)&exynos5_drv_data, }, { .compatible = "samsung,exynos-dwmmc", .data = (ulong)&exynos5_drv_data, -- 2.47.3