ARM: rmobile: Align CPU: print with other prints
authorMarek Vasut <marek.vasut+renesas@gmail.com>
Sun, 4 Jul 2021 15:27:27 +0000 (17:27 +0200)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Tue, 20 Jul 2021 21:33:54 +0000 (23:33 +0200)
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>
arch/arm/mach-rmobile/cpu_info.c

index 2bb6d50..bd9e717 100644 (file)
@@ -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());