diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2010-05-11 15:36:34 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-08-02 20:25:57 +0200 |
commit | bb6dbe74806a17bcec8396c57ca7fd9a889e3b27 (patch) | |
tree | 853278c1d41fbf81cde3e72599f7eade46901276 /include/media/videobuf-vmalloc.h | |
parent | V4L/DVB: videobuf: Remove videobuf_mapping start and end fields (diff) | |
download | linux-bb6dbe74806a17bcec8396c57ca7fd9a889e3b27.tar.xz linux-bb6dbe74806a17bcec8396c57ca7fd9a889e3b27.zip |
V4L/DVB: videobuf: Rename vmalloc fields to vaddr
The videobuf_dmabuf and videobuf_vmalloc_memory fields have a vmalloc
field to store the kernel virtual address of vmalloc'ed buffers. Rename
the field to vaddr.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media/videobuf-vmalloc.h')
-rw-r--r-- | include/media/videobuf-vmalloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/videobuf-vmalloc.h b/include/media/videobuf-vmalloc.h index 851eb1a2ff2a..e19403c18dae 100644 --- a/include/media/videobuf-vmalloc.h +++ b/include/media/videobuf-vmalloc.h @@ -22,7 +22,7 @@ struct videobuf_vmalloc_memory { u32 magic; - void *vmalloc; + void *vaddr; /* remap_vmalloc_range seems to need to run * after mmap() on some cases */ |