summaryrefslogtreecommitdiff
path: root/drivers/net/ibmveth.c
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2006-04-12 20:22:29 (GMT)
committerPaul Mackerras <paulus@samba.org>2006-04-22 08:45:10 (GMT)
commitf98baffb82710803005c19897f1a55af91da5685 (patch)
tree31c894ce8bfbf1438e05c1bced3fbf527ac7bc55 /drivers/net/ibmveth.c
parentf430c02b13f00146106fedcace810e61b4493d8c (diff)
downloadlinux-fsl-qoriq-f98baffb82710803005c19897f1a55af91da5685.tar.xz
[PATCH] powerpc: Quiet VETH version printk
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>
Diffstat (limited to 'drivers/net/ibmveth.c')
-rw-r--r--drivers/net/ibmveth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ibmveth.c b/drivers/net/ibmveth.c
index 52d0102..37965dc 100644
--- a/drivers/net/ibmveth.c
+++ b/drivers/net/ibmveth.c
@@ -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)