summaryrefslogtreecommitdiff
path: root/drivers/media/video/videobuf-dma-sg.c
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2007-12-08 00:14:43 (GMT)
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-01-25 21:03:20 (GMT)
commitd172b8bdab3812a6ad710e4cc78ceea3e8a40cd5 (patch)
tree1ae4518bdfb7472f2c4a35b6384328cd00b0c063 /drivers/media/video/videobuf-dma-sg.c
parent105354a0f0410d4715f38e67d5790dead5dafdad (diff)
downloadlinux-fsl-qoriq-d172b8bdab3812a6ad710e4cc78ceea3e8a40cd5.tar.xz
V4L/DVB (6749): v4l-nopage-fix
dont just copy-and-paste stuff. (compile-tested this time) Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Cc: Nick Piggin <nickpiggin@yahoo.com.au> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/videobuf-dma-sg.c')
-rw-r--r--drivers/media/video/videobuf-dma-sg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/videobuf-dma-sg.c b/drivers/media/video/videobuf-dma-sg.c
index eea5b4e..98efd7a 100644
--- a/drivers/media/video/videobuf-dma-sg.c
+++ b/drivers/media/video/videobuf-dma-sg.c
@@ -395,7 +395,8 @@ videobuf_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
page = alloc_page(GFP_USER | __GFP_DMA32);
if (!page)
return VM_FAULT_OOM;
- clear_user_page(page_address(page), vaddr, page);
+ clear_user_page(page_address(page), (unsigned long)vmf->virtual_address,
+ page);
vmf->page = page;
return 0;
}