diff options
author | Patrick McHardy <kaber@trash.net> | 2008-01-21 00:19:16 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:08:25 -0800 |
commit | b7a4a83629c1ddde8c2e6a872618c66577cb20f0 (patch) | |
tree | c32edd64012bf59e94e74ec39d20166899634de2 /net/8021q | |
parent | 740c15d0dd281c0cbe1a9ab1abc4f332e0df29bc (diff) | |
download | op-kernel-dev-b7a4a83629c1ddde8c2e6a872618c66577cb20f0.zip op-kernel-dev-b7a4a83629c1ddde8c2e6a872618c66577cb20f0.tar.gz |
[VLAN]: Kill useless VLAN_NAME define
The only user already includes __FUNCTION__ (vlan_proto_init) in the
output, which is enough to identify what the message is about.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q')
-rw-r--r-- | net/8021q/vlan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index 032bf44..af25255 100644 --- a/net/8021q/vlan.c +++ b/net/8021q/vlan.c @@ -89,8 +89,8 @@ static int __init vlan_proto_init(void) err = vlan_proc_init(); if (err < 0) { printk(KERN_ERR - "%s %s: can't create entry in proc filesystem!\n", - __FUNCTION__, VLAN_NAME); + "%s: can't create entry in proc filesystem!\n", + __FUNCTION__); return err; } |