Commit 959794dd authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Mauro Carvalho Chehab

V4L/DVB: videobuf: Remove videobuf_mapping start and end fields

The fields are assigned but never used, remove them.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 7181772d
...@@ -280,8 +280,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q, ...@@ -280,8 +280,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
return -ENOMEM; return -ENOMEM;
buf->map = map; buf->map = map;
map->start = vma->vm_start;
map->end = vma->vm_end;
map->q = q; map->q = q;
buf->baddr = vma->vm_start; buf->baddr = vma->vm_start;
......
...@@ -608,8 +608,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q, ...@@ -608,8 +608,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
} }
map->count = 1; map->count = 1;
map->start = vma->vm_start;
map->end = vma->vm_end;
map->q = q; map->q = q;
vma->vm_ops = &videobuf_vm_ops; vma->vm_ops = &videobuf_vm_ops;
vma->vm_flags |= VM_DONTEXPAND | VM_RESERVED; vma->vm_flags |= VM_DONTEXPAND | VM_RESERVED;
......
...@@ -245,8 +245,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q, ...@@ -245,8 +245,6 @@ static int __videobuf_mmap_mapper(struct videobuf_queue *q,
return -ENOMEM; return -ENOMEM;
buf->map = map; buf->map = map;
map->start = vma->vm_start;
map->end = vma->vm_end;
map->q = q; map->q = q;
buf->baddr = vma->vm_start; buf->baddr = vma->vm_start;
......
...@@ -54,8 +54,6 @@ struct videobuf_queue; ...@@ -54,8 +54,6 @@ struct videobuf_queue;
struct videobuf_mapping { struct videobuf_mapping {
unsigned int count; unsigned int count;
unsigned long start;
unsigned long end;
struct videobuf_queue *q; struct videobuf_queue *q;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment