]> Git Repo - linux.git/blobdiff - net/ipv4/gre.c
Merge tag 'device-for-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg...
[linux.git] / net / ipv4 / gre.c
index 8cb1ebb7cd7462b2b70c447b56d1693562b8027a..42a491055c7614f9658cf1f0e9bd4d54ba9959ff 100644 (file)
@@ -10,6 +10,8 @@
  *
  */
 
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
 #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/kmod.h>
@@ -118,10 +120,10 @@ static const struct net_protocol net_gre_protocol = {
 
 static int __init gre_init(void)
 {
-       pr_info("GRE over IPv4 demultiplexor driver");
+       pr_info("GRE over IPv4 demultiplexor driver\n");
 
        if (inet_add_protocol(&net_gre_protocol, IPPROTO_GRE) < 0) {
-               pr_err("gre: can't add protocol\n");
+               pr_err("can't add protocol\n");
                return -EAGAIN;
        }
 
This page took 0.031017 seconds and 4 git commands to generate.