diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-09-21 00:29:28 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-10-02 21:48:42 -0400 |
commit | c546726293912c932f3c14d06b0f68e175d70781 (patch) | |
tree | d54830cc1696c61bfb2105afb404969773a2533b /arch | |
parent | 4a4cfe3836916e12282ceb5c4bdd799dc71af567 (diff) |
[POWERPC] Remove debug printk from vio_bus_init
As it just adds noise to the boot messages.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/vio.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/powerpc/kernel/vio.c b/arch/powerpc/kernel/vio.c index 62c1bc12ea39..54645baab652 100644 --- a/arch/powerpc/kernel/vio.c +++ b/arch/powerpc/kernel/vio.c | |||
@@ -317,11 +317,8 @@ static int __init vio_bus_init(void) | |||
317 | * the device tree. Drivers will associate with them later. | 317 | * the device tree. Drivers will associate with them later. |
318 | */ | 318 | */ |
319 | for (of_node = node_vroot->child; of_node != NULL; | 319 | for (of_node = node_vroot->child; of_node != NULL; |
320 | of_node = of_node->sibling) { | 320 | of_node = of_node->sibling) |
321 | printk(KERN_DEBUG "%s: processing %p\n", | ||
322 | __FUNCTION__, of_node); | ||
323 | vio_register_device_node(of_node); | 321 | vio_register_device_node(of_node); |
324 | } | ||
325 | of_node_put(node_vroot); | 322 | of_node_put(node_vroot); |
326 | } | 323 | } |
327 | 324 | ||