aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Carroll <dcarroll@astekcorp.com>2011-06-18 03:36:40 -0400
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2011-06-30 01:28:05 -0400
commita9c0f41b3a64955fd6f4e9d66ae1df1cbdee0cd0 (patch)
tree9dcc389761a7fe08f06052bc979563158fc268d4
parent2773fcc8c48b947c997ff345f3e453917883cdb5 (diff)
powerpc: Add printk companion for ppc_md.progress
This patch adds a printk companion to replace the udbg progress function when initmem is freed. Suggested-by: Milton Miller <miltonm@bga.com> Suggested-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Dave Carroll <dcarroll@astekcorp.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r--arch/powerpc/include/asm/setup.h2
-rw-r--r--arch/powerpc/kernel/setup-common.c5
-rw-r--r--arch/powerpc/mm/mem.c2
3 files changed, 8 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/setup.h b/arch/powerpc/include/asm/setup.h
index dae19342f0b9..c77cb7a7f4dc 100644
--- a/arch/powerpc/include/asm/setup.h
+++ b/arch/powerpc/include/asm/setup.h
@@ -3,4 +3,6 @@
3 3
4#include <asm-generic/setup.h> 4#include <asm-generic/setup.h>
5 5
6extern void ppc_printk_progress(char *s, unsigned short hex);
7
6#endif /* _ASM_POWERPC_SETUP_H */ 8#endif /* _ASM_POWERPC_SETUP_H */
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c
index 79fca2651b65..e053b1641de3 100644
--- a/arch/powerpc/kernel/setup-common.c
+++ b/arch/powerpc/kernel/setup-common.c
@@ -704,6 +704,11 @@ static int powerpc_debugfs_init(void)
704arch_initcall(powerpc_debugfs_init); 704arch_initcall(powerpc_debugfs_init);
705#endif 705#endif
706 706
707void ppc_printk_progress(char *s, unsigned short hex)
708{
709 pr_info("%s\n", s);
710}
711
707static int ppc_dflt_bus_notify(struct notifier_block *nb, 712static int ppc_dflt_bus_notify(struct notifier_block *nb,
708 unsigned long action, void *data) 713 unsigned long action, void *data)
709{ 714{
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c
index e9379ce6f3be..a3841bb75cbb 100644
--- a/arch/powerpc/mm/mem.c
+++ b/arch/powerpc/mm/mem.c
@@ -387,7 +387,7 @@ void free_initmem(void)
387{ 387{
388 unsigned long addr; 388 unsigned long addr;
389 389
390 ppc_md.progress = NULL; 390 ppc_md.progress = ppc_printk_progress;
391 391
392 addr = (unsigned long)__init_begin; 392 addr = (unsigned long)__init_begin;
393 for (; addr < (unsigned long)__init_end; addr += PAGE_SIZE) { 393 for (; addr < (unsigned long)__init_end; addr += PAGE_SIZE) {