Skip to content
Snippets Groups Projects
Commit 1fc84d6b authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

reset: uniphier: fix compatible for SD reset node for LD11/LD20


LD20 has SD ctrl instead of MIO ctrl.  LD11 has both of them.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent d7505752
No related branches found
No related tags found
No related merge requests found
...@@ -294,7 +294,11 @@ static const struct udevice_id uniphier_reset_match[] = { ...@@ -294,7 +294,11 @@ static const struct udevice_id uniphier_reset_match[] = {
.data = (ulong)uniphier_mio_reset_data, .data = (ulong)uniphier_mio_reset_data,
}, },
{ {
.compatible = "socionext,uniphier-ld20-mio-reset", .compatible = "socionext,uniphier-ld11-sd-reset",
.data = (ulong)uniphier_mio_reset_data,
},
{
.compatible = "socionext,uniphier-ld20-sd-reset",
.data = (ulong)uniphier_mio_reset_data, .data = (ulong)uniphier_mio_reset_data,
}, },
/* Peripheral reset */ /* Peripheral reset */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment