aboutsummaryrefslogtreecommitdiffstats
path: root/net/8021q/vlanproc.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-05-26 10:58:31 +0000
committerDavid S. Miller <davem@davemloft.net>2011-06-02 14:04:39 -0700
commitafab2d2999e9c12cf319e1f19da9a0a754560d80 (patch)
treea36a57beddf248af65dc2299f26f5e7c60da3296 /net/8021q/vlanproc.c
parentsctp: Add ASCONF operation on the single-homed host (diff)
downloadlinux-dev-afab2d2999e9c12cf319e1f19da9a0a754560d80.tar.xz
linux-dev-afab2d2999e9c12cf319e1f19da9a0a754560d80.zip
net: 8021q: Add pr_fmt
Use the current logging style. Add #define pr_fmt and remove embedded prefix from formats. Not converting the current pr_<level> uses to netdev_<level> because all the output here is nicely prefaced with "8021q: ". Remove __func__ use from proc registration failure message. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q/vlanproc.c')
-rw-r--r--net/8021q/vlanproc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/8021q/vlanproc.c b/net/8021q/vlanproc.c
index d940c49d168a..016d7f4f1c84 100644
--- a/net/8021q/vlanproc.c
+++ b/net/8021q/vlanproc.c
@@ -17,6 +17,8 @@
* Jan 20, 1998 Ben Greear Initial Version
*****************************************************************************/
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/kernel.h>
@@ -155,7 +157,7 @@ int __net_init vlan_proc_init(struct net *net)
return 0;
err:
- pr_err("%s: can't create entry in proc filesystem!\n", __func__);
+ pr_err("can't create entry in proc filesystem!\n");
vlan_proc_cleanup(net);
return -ENOBUFS;
}