From: Stephen Rothwell Date: Fri, 21 Sep 2007 04:29:28 +0000 (+1000) Subject: [POWERPC] Remove debug printk from vio_bus_init X-Git-Tag: v2.6.24-rc1~1450^2~162 X-Git-Url: http://git.cascardo.info/?a=commitdiff_plain;h=c546726293912c932f3c14d06b0f68e175d70781;p=cascardo%2Flinux.git [POWERPC] Remove debug printk from vio_bus_init As it just adds noise to the boot messages. Signed-off-by: Stephen Rothwell Signed-off-by: Paul Mackerras --- 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) * the device tree. Drivers will associate with them later. */ for (of_node = node_vroot->child; of_node != NULL; - of_node = of_node->sibling) { - printk(KERN_DEBUG "%s: processing %p\n", - __FUNCTION__, of_node); + of_node = of_node->sibling) vio_register_device_node(of_node); - } of_node_put(node_vroot); }