]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mmc: renesas-sdhi: Add compatible string for rzg2l-sdhi
authorPaul Barker <paul.barker.ct@bp.renesas.com>
Wed, 23 Oct 2024 10:53:19 +0000 (11:53 +0100)
committerMarek Vasut <marek.vasut+renesas@mailbox.org>
Mon, 28 Oct 2024 15:27:34 +0000 (16:27 +0100)
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 <jh80.chung@samsung.com>
Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Signed-off-by: Paul Barker <paul.barker.ct@bp.renesas.com>
drivers/mmc/renesas-sdhi.c

index 23db2a75c4441fc89561a74b8cce0fc6f7210b1c..92afa6adcdac91da39fdee97c39860b1cad7b930 100644 (file)
@@ -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 */ }
 };