From: Lukas Timmermann Date: Tue, 14 Oct 2025 11:40:32 +0000 (+0200) Subject: mmc: exynos_dw_mmc: Add compatible string for Exynos5250 X-Git-Tag: v2026.01-rc2~55^2~19 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d23810c3c6cea0326b48f5ef9faca6a8fe3ff5a;p=pandora-u-boot.git 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 --- 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,