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>
                return -ENOMEM;
 
        buf->map = map;
-       map->start = vma->vm_start;
-       map->end = vma->vm_end;
        map->q = q;
 
        buf->baddr = vma->vm_start;
 
        }
 
        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;
 
                return -ENOMEM;
 
        buf->map = map;
-       map->start = vma->vm_start;
-       map->end   = vma->vm_end;
        map->q     = q;
 
        buf->baddr = vma->vm_start;
 
 
 struct videobuf_mapping {
        unsigned int count;
-       unsigned long start;
-       unsigned long end;
        struct videobuf_queue *q;
 };