diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-09-10 12:58:35 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-09-11 20:37:18 +0900 |
commit | c3ab1e118fc64b5ac49e949dab40507f6fdbbde3 (patch) | |
tree | 965fc2c273cfbed8e57c1b76980908c0104953e7 /drivers/mmc/uniphier-sd.c | |
parent | b07f6e9faf3a111bd88a1814f346d56a6d48d215 (diff) | |
download | u-boot-c3ab1e118fc64b5ac49e949dab40507f6fdbbde3.tar.gz |
mmc: uniphier-sd: sync with Linux
Sync with the driver code and the binding recently merged in Linux.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'drivers/mmc/uniphier-sd.c')
-rw-r--r-- | drivers/mmc/uniphier-sd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/mmc/uniphier-sd.c b/drivers/mmc/uniphier-sd.c index ad5dbb3433..813c28494c 100644 --- a/drivers/mmc/uniphier-sd.c +++ b/drivers/mmc/uniphier-sd.c @@ -25,7 +25,9 @@ static const struct dm_mmc_ops uniphier_sd_ops = { }; static const struct udevice_id uniphier_sd_match[] = { - { .compatible = "socionext,uniphier-sdhc", .data = 0 }, + { .compatible = "socionext,uniphier-sd-v2.91" }, + { .compatible = "socionext,uniphier-sd-v3.1" }, + { .compatible = "socionext,uniphier-sd-v3.1.1" }, { /* sentinel */ } }; |