summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Grimler <[email protected]>2025-07-20 19:00:27 +0200
committerPeng Fan <[email protected]>2025-07-24 12:35:35 +0800
commit95f8a22e2a8aec2844ed48721e2ec676221fc3d3 (patch)
tree92a006fab940caa04f2103e4a6585932fe4cbc26
parent4381d7bb3327938373dafe6b96cb98fbc5c26a49 (diff)
mmc: s5p_sdhci: add samsung,exynos4210-sdhci compatible
the Exynos4210 devices in u-boot uses samsung,exynos4412-sdhci as sdhci compatible in their DTSes, while the upstream DTSes uses samsung,exynos4210-sdhci. Add samsung,exynos4210-sdhci compatible string for s5p_sdhci driver as well so that it can be used with upstream DTSes. Signed-off-by: Henrik Grimler <[email protected]> Reviewed-by: Anand Moon <[email protected]> Reviewed-by: Sam Protsenko <[email protected]> Signed-off-by: Peng Fan <[email protected]>
-rw-r--r--drivers/mmc/s5p_sdhci.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/s5p_sdhci.c b/drivers/mmc/s5p_sdhci.c
index b2faecefc00..c80033d8752 100644
--- a/drivers/mmc/s5p_sdhci.c
+++ b/drivers/mmc/s5p_sdhci.c
@@ -226,6 +226,7 @@ static int s5p_sdhci_bind(struct udevice *dev)
static const struct udevice_id s5p_sdhci_ids[] = {
{ .compatible = "samsung,exynos4412-sdhci"},
+ { .compatible = "samsung,exynos4210-sdhci"},
{ }
};