summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorPaul Barker <[email protected]>2024-10-23 11:53:19 +0100
committerMarek Vasut <[email protected]>2024-10-28 16:27:34 +0100
commit400d06cb86a074dbd23cbb7f1210dad26f392807 (patch)
tree4354a7df36e7573bfccf6cd30ecdb1e050dc1d50 /drivers
parentb7b1c544b7412fa61a131102ca148a08e2000e1b (diff)
mmc: renesas-sdhi: Add compatible string for rzg2l-sdhi
After the recent dts/upstream subtree merge, the sdhi compatible string used in the device tree for RZ/G2L family SoCs is "renesas,rzg2l-sdhi" not "renesas,rcar-gen3-sdhi". This broke the ability to access the eMMC and SD card devices on RZ/G2L boards. Fix this by adding the new compatible string to the sdhi driver. Fixes: 136b7b6d2e98 ("Subtree merge tag 'v6.11-dts' of dts repo [1] into dts/upstream") Reviewed-by: Jaehoon Chung <[email protected]> Reviewed-by: Marek Vasut <[email protected]> Signed-off-by: Paul Barker <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mmc/renesas-sdhi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/renesas-sdhi.c b/drivers/mmc/renesas-sdhi.c
index 23db2a75c44..92afa6adcda 100644
--- a/drivers/mmc/renesas-sdhi.c
+++ b/drivers/mmc/renesas-sdhi.c
@@ -864,6 +864,7 @@ static const struct udevice_id renesas_sdhi_match[] = {
{ .compatible = "renesas,sdhi-r8a77990", .data = RENESAS_GEN3_QUIRKS },
{ .compatible = "renesas,sdhi-r8a77995", .data = RENESAS_GEN3_QUIRKS },
{ .compatible = "renesas,rcar-gen4-sdhi", .data = RENESAS_GEN3_QUIRKS },
+ { .compatible = "renesas,rzg2l-sdhi", .data = RENESAS_GEN3_QUIRKS },
{ /* sentinel */ }
};