aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/videobuf2-memops.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/videobuf2-memops.c')
-rw-r--r--drivers/media/video/videobuf2-memops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/videobuf2-memops.c b/drivers/media/video/videobuf2-memops.c
index b03c3aea5bea..569eeb3dfd50 100644
--- a/drivers/media/video/videobuf2-memops.c
+++ b/drivers/media/video/videobuf2-memops.c
@@ -176,7 +176,7 @@ int vb2_mmap_pfn_range(struct vm_area_struct *vma, unsigned long paddr,
176 176
177 vma->vm_ops->open(vma); 177 vma->vm_ops->open(vma);
178 178
179 printk(KERN_DEBUG "%s: mapped paddr 0x%08lx at 0x%08lx, size %ld\n", 179 pr_debug("%s: mapped paddr 0x%08lx at 0x%08lx, size %ld\n",
180 __func__, paddr, vma->vm_start, size); 180 __func__, paddr, vma->vm_start, size);
181 181
182 return 0; 182 return 0;
@@ -194,7 +194,7 @@ static void vb2_common_vm_open(struct vm_area_struct *vma)
194{ 194{
195 struct vb2_vmarea_handler *h = vma->vm_private_data; 195 struct vb2_vmarea_handler *h = vma->vm_private_data;
196 196
197 printk(KERN_DEBUG "%s: %p, refcount: %d, vma: %08lx-%08lx\n", 197 pr_debug("%s: %p, refcount: %d, vma: %08lx-%08lx\n",
198 __func__, h, atomic_read(h->refcount), vma->vm_start, 198 __func__, h, atomic_read(h->refcount), vma->vm_start,
199 vma->vm_end); 199 vma->vm_end);
200 200
@@ -212,7 +212,7 @@ static void vb2_common_vm_close(struct vm_area_struct *vma)
212{ 212{
213 struct vb2_vmarea_handler *h = vma->vm_private_data; 213 struct vb2_vmarea_handler *h = vma->vm_private_data;
214 214
215 printk(KERN_DEBUG "%s: %p, refcount: %d, vma: %08lx-%08lx\n", 215 pr_debug("%s: %p, refcount: %d, vma: %08lx-%08lx\n",
216 __func__, h, atomic_read(h->refcount), vma->vm_start, 216 __func__, h, atomic_read(h->refcount), vma->vm_start,
217 vma->vm_end); 217 vma->vm_end);
218 218