Skip to content
Snippets Groups Projects
Commit e22455f0 authored by Ladislav Michl's avatar Ladislav Michl Committed by Tom Rini
Browse files

armv7: fix order of OMAP die ID printing

parent a8122410
No related branches found
No related tags found
No related merge requests found
......@@ -108,6 +108,6 @@ void omap_die_id_display(void)
omap_die_id(die_id);
printf("OMAP die ID: %08x%08x%08x%08x\n", die_id[0], die_id[1],
die_id[2], die_id[3]);
printf("OMAP die ID: %08x%08x%08x%08x\n", die_id[3], die_id[2],
die_id[1], die_id[0]);
}
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