diff options
author | Kumar Gala <galak@gate.crashing.org> | 2005-12-20 17:37:07 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-08 23:33:50 -0500 |
commit | be6b843918394067e93ebbacb834245251a6f18a (patch) | |
tree | d8d801260e56c2d07ca20ec943cae55e319bfb36 /arch/powerpc/kernel/udbg.c | |
parent | b580d46ce833f6bdc6a5602f4f0efb1d9c488ed6 (diff) |
[PATCH] powerpc: added a udbg_progress
Added a common udbg_progress for use by ppc_md.progress()
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/udbg.c')
-rw-r--r-- | arch/powerpc/kernel/udbg.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/udbg.c b/arch/powerpc/kernel/udbg.c index 9567d9474c80..558c1ceb2b93 100644 --- a/arch/powerpc/kernel/udbg.c +++ b/arch/powerpc/kernel/udbg.c | |||
@@ -90,6 +90,12 @@ void udbg_printf(const char *fmt, ...) | |||
90 | va_end(args); | 90 | va_end(args); |
91 | } | 91 | } |
92 | 92 | ||
93 | void __init udbg_progress(char *s, unsigned short hex) | ||
94 | { | ||
95 | udbg_puts(s); | ||
96 | udbg_puts("\n"); | ||
97 | } | ||
98 | |||
93 | /* | 99 | /* |
94 | * Early boot console based on udbg | 100 | * Early boot console based on udbg |
95 | */ | 101 | */ |