Commit 1f8737aa authored by Anton Blanchard's avatar Anton Blanchard Committed by Paul Mackerras

powerpc: Clean up some prom printouts

Make all messages consistent, some have spaces before the "...", some do not.
Signed-off-by: default avatarAnton Blanchard <anton@samba.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 4da727ae
...@@ -1085,7 +1085,7 @@ static void __init prom_instantiate_rtas(void) ...@@ -1085,7 +1085,7 @@ static void __init prom_instantiate_rtas(void)
return; return;
} }
prom_printf("instantiating rtas at 0x%x ...", base); prom_printf("instantiating rtas at 0x%x...", base);
if (call_prom_ret("call-method", 3, 2, &entry, if (call_prom_ret("call-method", 3, 2, &entry,
ADDR("instantiate-rtas"), ADDR("instantiate-rtas"),
...@@ -1564,7 +1564,7 @@ static void __init prom_check_displays(void) ...@@ -1564,7 +1564,7 @@ static void __init prom_check_displays(void)
if (call_prom("package-to-path", 3, 1, node, path, if (call_prom("package-to-path", 3, 1, node, path,
PROM_SCRATCH_SIZE-10) == PROM_ERROR) PROM_SCRATCH_SIZE-10) == PROM_ERROR)
continue; continue;
prom_printf("found display : %s, opening ... ", path); prom_printf("found display : %s, opening... ", path);
ih = call_prom("open", 1, 1, path); ih = call_prom("open", 1, 1, path);
if (ih == 0) { if (ih == 0) {
...@@ -2389,7 +2389,7 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4, ...@@ -2389,7 +2389,7 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4,
/* /*
* Now finally create the flattened device-tree * Now finally create the flattened device-tree
*/ */
prom_printf("copying OF device tree ...\n"); prom_printf("copying OF device tree...\n");
flatten_device_tree(); flatten_device_tree();
/* /*
...@@ -2404,7 +2404,7 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4, ...@@ -2404,7 +2404,7 @@ unsigned long __init prom_init(unsigned long r3, unsigned long r4,
* Call OF "quiesce" method to shut down pending DMA's from * Call OF "quiesce" method to shut down pending DMA's from
* devices etc... * devices etc...
*/ */
prom_printf("Calling quiesce ...\n"); prom_printf("Calling quiesce...\n");
call_prom("quiesce", 0, 0); call_prom("quiesce", 0, 0);
/* /*
......
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