diff options
Diffstat (limited to 'drivers/xen/xenfs/super.c')
-rw-r--r-- | drivers/xen/xenfs/super.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/xen/xenfs/super.c b/drivers/xen/xenfs/super.c index 71679875f056..06092e0fe8ce 100644 --- a/drivers/xen/xenfs/super.c +++ b/drivers/xen/xenfs/super.c | |||
@@ -7,6 +7,8 @@ | |||
7 | * Turned xenfs into a loadable module. | 7 | * Turned xenfs into a loadable module. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
11 | |||
10 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
11 | #include <linux/errno.h> | 13 | #include <linux/errno.h> |
12 | #include <linux/module.h> | 14 | #include <linux/module.h> |
@@ -82,7 +84,7 @@ static int __init xenfs_init(void) | |||
82 | if (xen_domain()) | 84 | if (xen_domain()) |
83 | return register_filesystem(&xenfs_type); | 85 | return register_filesystem(&xenfs_type); |
84 | 86 | ||
85 | printk(KERN_INFO "XENFS: not registering filesystem on non-xen platform\n"); | 87 | pr_info("not registering filesystem on non-xen platform\n"); |
86 | return 0; | 88 | return 0; |
87 | } | 89 | } |
88 | 90 | ||