summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Timmermann <[email protected]>2025-10-14 13:40:32 +0200
committerPeng Fan <[email protected]>2025-10-30 10:11:17 +0800
commit5d23810c3c6cea0326b48f5ef9faca6a8fe3ff5a (patch)
tree7918e184269361c7e3e60ada45ec227860cc0528
parente34d01d23e45e007368685ffa6dfd674b6dd7b17 (diff)
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 <[email protected]> Reviewed-by: Peng Fan <[email protected]> Signed-off-by: Peng Fan <[email protected]>
-rw-r--r--drivers/mmc/exynos_dw_mmc.c3
1 files changed, 3 insertions, 0 deletions
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
@@ -379,6 +379,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,
}, {