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

ARM: uniphier: fix MODEL field of REVISION register


The MODEL field is 3 bit wide.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 4125bbce
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ unsigned int uniphier_get_soc_id(void)
unsigned int uniphier_get_soc_model(void)
{
return __uniphier_get_revision_field(0x3, 8);
return __uniphier_get_revision_field(0x7, 8);
}
unsigned int uniphier_get_soc_revision(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment