From: Marek Vasut Date: Sun, 4 Jul 2021 15:27:27 +0000 (+0200) Subject: ARM: rmobile: Align CPU: print with other prints X-Git-Tag: v2021.10~93^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=91c6a3a45941cbf53adb91fc4464a3d060a7233b;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/arch/arm/mach-rmobile/cpu_info.c b/arch/arm/mach-rmobile/cpu_info.c index 2bb6d50..bd9e717 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());