diff options
Diffstat (limited to 'net/l2tp/l2tp_debugfs.c')
-rw-r--r-- | net/l2tp/l2tp_debugfs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/l2tp/l2tp_debugfs.c b/net/l2tp/l2tp_debugfs.c index c0d57bad8b79..c3813bc84552 100644 --- a/net/l2tp/l2tp_debugfs.c +++ b/net/l2tp/l2tp_debugfs.c | |||
@@ -9,6 +9,8 @@ | |||
9 | * 2 of the License, or (at your option) any later version. | 9 | * 2 of the License, or (at your option) any later version. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
13 | |||
12 | #include <linux/module.h> | 14 | #include <linux/module.h> |
13 | #include <linux/skbuff.h> | 15 | #include <linux/skbuff.h> |
14 | #include <linux/socket.h> | 16 | #include <linux/socket.h> |
@@ -325,11 +327,11 @@ static int __init l2tp_debugfs_init(void) | |||
325 | if (tunnels == NULL) | 327 | if (tunnels == NULL) |
326 | rc = -EIO; | 328 | rc = -EIO; |
327 | 329 | ||
328 | printk(KERN_INFO "L2TP debugfs support\n"); | 330 | pr_info("L2TP debugfs support\n"); |
329 | 331 | ||
330 | out: | 332 | out: |
331 | if (rc) | 333 | if (rc) |
332 | printk(KERN_WARNING "l2tp debugfs: unable to init\n"); | 334 | pr_warn("unable to init\n"); |
333 | 335 | ||
334 | return rc; | 336 | return rc; |
335 | } | 337 | } |