diff options
author | Marek Vasut | 2017-10-21 11:31:57 +0200 |
---|---|---|
committer | Marek Vasut | 2017-12-09 13:36:26 +0100 |
commit | 6ba2382f426fb8d7d6e3ca13ae0a74f4386d8d20 (patch) | |
tree | ca8080ae5585d2d72c186cd18270c8057bd13848 /drivers/mmc/uniphier-sd.c | |
parent | e3ab42480e3627f7a320b19a91eca364150776f3 (diff) |
mmc: uniphier-sd: Add R8A77970 V3M compatible
Add new compatible to the Uniphier SD driver for R8A77970 V3M SoC.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'drivers/mmc/uniphier-sd.c')
-rw-r--r-- | drivers/mmc/uniphier-sd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/uniphier-sd.c b/drivers/mmc/uniphier-sd.c index 0d1203cb766..4d287ef9560 100644 --- a/drivers/mmc/uniphier-sd.c +++ b/drivers/mmc/uniphier-sd.c @@ -849,6 +849,7 @@ static int uniphier_sd_probe(struct udevice *dev) static const struct udevice_id uniphier_sd_match[] = { { .compatible = "renesas,sdhi-r8a7795", .data = UNIPHIER_SD_CAP_64BIT }, { .compatible = "renesas,sdhi-r8a7796", .data = UNIPHIER_SD_CAP_64BIT }, + { .compatible = "renesas,sdhi-r8a77970", .data = UNIPHIER_SD_CAP_64BIT }, { .compatible = "socionext,uniphier-sdhc", .data = 0 }, { /* sentinel */ } }; |