V4L/DVB: videobuf: Remove videobuf_mapping start and end fields
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Tue, 11 May 2010 13:36:33 +0000 (10:36 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 2 Aug 2010 18:23:09 +0000 (15:23 -0300)
The fields are assigned but never used, remove them.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/videobuf-dma-contig.c
drivers/media/video/videobuf-dma-sg.c
drivers/media/video/videobuf-vmalloc.c
include/media/videobuf-core.h

index 98e292c..372b87e 100644 (file)
@@ -280,8 +280,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
                return -ENOMEM;
 
        buf->map = map;
-       map->start = vma->vm_start;
-       map->end = vma->vm_end;
        map->q = q;
 
        buf->baddr = vma->vm_start;
index 8924e51..2d64040 100644 (file)
@@ -608,8 +608,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
        }
 
        map->count    = 1;
-       map->start    = vma->vm_start;
-       map->end      = vma->vm_end;
        map->q        = q;
        vma->vm_ops   = &videobuf_vm_ops;
        vma->vm_flags |= VM_DONTEXPAND | VM_RESERVED;
index cf5be6b..f0d7cb8 100644 (file)
@@ -245,8 +245,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
                return -ENOMEM;
 
        buf->map = map;
-       map->start = vma->vm_start;
-       map->end   = vma->vm_end;
        map->q     = q;
 
        buf->baddr = vma->vm_start;
index a157cd1..f2c41ce 100644 (file)
@@ -54,8 +54,6 @@ struct videobuf_queue;
 
 struct videobuf_mapping {
        unsigned int count;
-       unsigned long start;
-       unsigned long end;
        struct videobuf_queue *q;
 };