[PATCH] powerpc: Quiet VETH version printk
authorOlof Johansson <olof@lixom.net>
Wed, 12 Apr 2006 20:22:29 +0000 (15:22 -0500)
committerPaul Mackerras <paulus@samba.org>
Sat, 22 Apr 2006 08:45:10 +0000 (18:45 +1000)
ibmveth_printk() is only used to print the driver version when the module
initializes, which means on all machines as long as it's compiled in.

If it's really only needed for debugging, boot with loglevel=8, or get
it from dmesg instead.

Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
drivers/net/ibmveth.c

index 52d0102..37965dc 100644 (file)
@@ -61,7 +61,7 @@
 #undef DEBUG
 
 #define ibmveth_printk(fmt, args...) \
-  printk(KERN_INFO "%s: " fmt, __FILE__, ## args)
+  printk(KERN_DEBUG "%s: " fmt, __FILE__, ## args)
 
 #define ibmveth_error_printk(fmt, args...) \
   printk(KERN_ERR "(%s:%3.3d ua:%x) ERROR: " fmt, __FILE__, __LINE__ , adapter->vdev->unit_address, ## args)