Commit 4b3ed614 authored by Joe Perches's avatar Joe Perches Committed by Linus Torvalds

tile: neaten early_printk uses

Coalesce the formats and align arguments.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarChris Metcalf <cmetcalf@tilera.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1dc6244b
...@@ -1208,9 +1208,8 @@ static void __init validate_hv(void) ...@@ -1208,9 +1208,8 @@ static void __init validate_hv(void)
* We use a struct cpumask for this, so it must be big enough. * We use a struct cpumask for this, so it must be big enough.
*/ */
if ((smp_height * smp_width) > nr_cpu_ids) if ((smp_height * smp_width) > nr_cpu_ids)
early_panic("Hypervisor %d x %d grid too big for Linux" early_panic("Hypervisor %d x %d grid too big for Linux NR_CPUS %d\n",
" NR_CPUS %d\n", smp_height, smp_width, smp_height, smp_width, nr_cpu_ids);
nr_cpu_ids);
#endif #endif
/* /*
...@@ -1265,10 +1264,9 @@ static void __init validate_va(void) ...@@ -1265,10 +1264,9 @@ static void __init validate_va(void)
/* Kernel PCs must have their high bit set; see intvec.S. */ /* Kernel PCs must have their high bit set; see intvec.S. */
if ((long)VMALLOC_START >= 0) if ((long)VMALLOC_START >= 0)
early_panic( early_panic("Linux VMALLOC region below the 2GB line (%#lx)!\n"
"Linux VMALLOC region below the 2GB line (%#lx)!\n" "Reconfigure the kernel with smaller VMALLOC_RESERVE\n",
"Reconfigure the kernel with smaller VMALLOC_RESERVE.\n", VMALLOC_START);
VMALLOC_START);
#endif #endif
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment