diff options
author | Marek Vasut | 2021-07-04 17:27:27 +0200 |
---|---|---|
committer | Marek Vasut | 2021-07-20 23:33:54 +0200 |
commit | 91c6a3a45941cbf53adb91fc4464a3d060a7233b (patch) | |
tree | e13e9f0eee921b5a50fea285e0ae1d4cea3b7ad4 /arch/arm/mach-rmobile | |
parent | ef283c3ae612a1f1cd530a34cdcf074d447b2da9 (diff) |
ARM: rmobile: Align CPU: print with other prints
The CPU: print only has one space after it, while the other prints
from U-Boot align the value to offset 7. Align the CPU: print too.
No functional change.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Diffstat (limited to 'arch/arm/mach-rmobile')
-rw-r--r-- | arch/arm/mach-rmobile/cpu_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rmobile/cpu_info.c b/arch/arm/mach-rmobile/cpu_info.c index 2bb6d502b87..bd9e71707f5 100644 --- a/arch/arm/mach-rmobile/cpu_info.c +++ b/arch/arm/mach-rmobile/cpu_info.c @@ -119,7 +119,7 @@ int print_cpuinfo(void) { int i = rmobile_cpuinfo_idx(); - printf("CPU: Renesas Electronics %s rev %d.%d\n", + printf("CPU: Renesas Electronics %s rev %d.%d\n", get_cpu_name(i), rmobile_get_cpu_rev_integer(), rmobile_get_cpu_rev_fraction()); |