diff options
| author | Ladislav Michl <[email protected]> | 2016-06-02 11:43:16 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-06-06 13:39:17 -0400 |
| commit | e22455f0a6020acc781267cf2f6e926fe8a4cae7 (patch) | |
| tree | 8c9644fe5b636ba91e0a81fa38fded13b1e230f7 | |
| parent | a812241091cec09c4a214c57776eefb8f19d81a9 (diff) | |
armv7: fix order of OMAP die ID printing
Signed-off-by: Ladislav Michl <[email protected]>
Acked-by: Enric Balletbo i Serra <[email protected]>
| -rw-r--r-- | arch/arm/cpu/armv7/omap-common/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/utils.c b/arch/arm/cpu/armv7/omap-common/utils.c index 52ea7342dfb..2d03ebfbd3d 100644 --- a/arch/arm/cpu/armv7/omap-common/utils.c +++ b/arch/arm/cpu/armv7/omap-common/utils.c @@ -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]); } |
