aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morton <[email protected]>2007-12-07 21:14:43 -0300
committerMauro Carvalho Chehab <[email protected]>2008-01-25 19:03:20 -0200
commitd172b8bdab3812a6ad710e4cc78ceea3e8a40cd5 (patch)
tree1ae4518bdfb7472f2c4a35b6384328cd00b0c063
parent105354a0f0410d4715f38e67d5790dead5dafdad (diff)
V4L/DVB (6749): v4l-nopage-fix
dont just copy-and-paste stuff. (compile-tested this time) Signed-off-by: Andrew Morton <[email protected]> Cc: Nick Piggin <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-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 eea5b4ecfc3d..98efd7ab1f50 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;
}