diff options
Diffstat (limited to 'drivers/xen/gntalloc.c')
-rw-r--r-- | drivers/xen/gntalloc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/xen/gntalloc.c b/drivers/xen/gntalloc.c index 4097987b330e..787d17945418 100644 --- a/drivers/xen/gntalloc.c +++ b/drivers/xen/gntalloc.c | |||
@@ -48,6 +48,8 @@ | |||
48 | * grant operation. | 48 | * grant operation. |
49 | */ | 49 | */ |
50 | 50 | ||
51 | #define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt | ||
52 | |||
51 | #include <linux/atomic.h> | 53 | #include <linux/atomic.h> |
52 | #include <linux/module.h> | 54 | #include <linux/module.h> |
53 | #include <linux/miscdevice.h> | 55 | #include <linux/miscdevice.h> |
@@ -507,7 +509,7 @@ static int gntalloc_mmap(struct file *filp, struct vm_area_struct *vma) | |||
507 | int rv, i; | 509 | int rv, i; |
508 | 510 | ||
509 | if (!(vma->vm_flags & VM_SHARED)) { | 511 | if (!(vma->vm_flags & VM_SHARED)) { |
510 | printk(KERN_ERR "%s: Mapping must be shared.\n", __func__); | 512 | pr_err("%s: Mapping must be shared\n", __func__); |
511 | return -EINVAL; | 513 | return -EINVAL; |
512 | } | 514 | } |
513 | 515 | ||
@@ -584,7 +586,7 @@ static int __init gntalloc_init(void) | |||
584 | 586 | ||
585 | err = misc_register(&gntalloc_miscdev); | 587 | err = misc_register(&gntalloc_miscdev); |
586 | if (err != 0) { | 588 | if (err != 0) { |
587 | printk(KERN_ERR "Could not register misc gntalloc device\n"); | 589 | pr_err("Could not register misc gntalloc device\n"); |
588 | return err; | 590 | return err; |
589 | } | 591 | } |
590 | 592 | ||