diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2005-07-07 20:56:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-07 21:23:42 -0400 |
commit | b6bff397ea9c36d410212f785ee644103146102a (patch) | |
tree | ff1be4fa98c580cc3d3246d866b76102efa703cb /arch/ppc64/kernel/setup.c | |
parent | 10ca1e1ed58d6428924b5a44539334c341a6f485 (diff) |
[PATCH] ppc64: Be consistent about printing which idle loop we're using
Not sure if we really need this, but it was handy to know which iSeries loop I
was testing.
Be consistent about printing which idle loop we're using, with this patch we
cover all cases.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ppc64/kernel/setup.c')
-rw-r--r-- | arch/ppc64/kernel/setup.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/ppc64/kernel/setup.c b/arch/ppc64/kernel/setup.c index a278998ecb44..d1b33f0b26cb 100644 --- a/arch/ppc64/kernel/setup.c +++ b/arch/ppc64/kernel/setup.c | |||
@@ -1081,8 +1081,10 @@ void __init setup_arch(char **cmdline_p) | |||
1081 | ppc_md.setup_arch(); | 1081 | ppc_md.setup_arch(); |
1082 | 1082 | ||
1083 | /* Use the default idle loop if the platform hasn't provided one. */ | 1083 | /* Use the default idle loop if the platform hasn't provided one. */ |
1084 | if (NULL == ppc_md.idle_loop) | 1084 | if (NULL == ppc_md.idle_loop) { |
1085 | ppc_md.idle_loop = default_idle; | 1085 | ppc_md.idle_loop = default_idle; |
1086 | printk(KERN_INFO "Using default idle loop\n"); | ||
1087 | } | ||
1086 | 1088 | ||
1087 | paging_init(); | 1089 | paging_init(); |
1088 | ppc64_boot_msg(0x15, "Setup Done"); | 1090 | ppc64_boot_msg(0x15, "Setup Done"); |