Commit d50e257e authored by Jean-Francois Moine's avatar Jean-Francois Moine Committed by Mauro Carvalho Chehab

V4L/DVB (13560): gspca - main: Cleanup source.

Signed-off-by: default avatarJean-Francois Moine <moinejf@free.fr>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent fe2b6032
...@@ -304,7 +304,6 @@ void gspca_frame_add(struct gspca_dev *gspca_dev, ...@@ -304,7 +304,6 @@ void gspca_frame_add(struct gspca_dev *gspca_dev,
j = gspca_dev->fr_queue[i]; j = gspca_dev->fr_queue[i];
gspca_dev->cur_frame = &gspca_dev->frame[j]; gspca_dev->cur_frame = &gspca_dev->frame[j];
} }
return;
} }
EXPORT_SYMBOL(gspca_frame_add); EXPORT_SYMBOL(gspca_frame_add);
...@@ -321,7 +320,7 @@ static int gspca_is_compressed(__u32 format) ...@@ -321,7 +320,7 @@ static int gspca_is_compressed(__u32 format)
return 0; return 0;
} }
static void *rvmalloc(unsigned long size) static void *rvmalloc(long size)
{ {
void *mem; void *mem;
unsigned long adr; unsigned long adr;
...@@ -329,7 +328,7 @@ static void *rvmalloc(unsigned long size) ...@@ -329,7 +328,7 @@ static void *rvmalloc(unsigned long size)
mem = vmalloc_32(size); mem = vmalloc_32(size);
if (mem != NULL) { if (mem != NULL) {
adr = (unsigned long) mem; adr = (unsigned long) mem;
while ((long) size > 0) { while (size > 0) {
SetPageReserved(vmalloc_to_page((void *) adr)); SetPageReserved(vmalloc_to_page((void *) adr));
adr += PAGE_SIZE; adr += PAGE_SIZE;
size -= PAGE_SIZE; size -= PAGE_SIZE;
...@@ -1614,7 +1613,7 @@ static int dev_mmap(struct file *file, struct vm_area_struct *vma) ...@@ -1614,7 +1613,7 @@ static int dev_mmap(struct file *file, struct vm_area_struct *vma)
size -= PAGE_SIZE; size -= PAGE_SIZE;
} }
vma->vm_ops = (struct vm_operations_struct *) &gspca_vm_ops; vma->vm_ops = &gspca_vm_ops;
vma->vm_private_data = frame; vma->vm_private_data = frame;
gspca_vm_open(vma); gspca_vm_open(vma);
ret = 0; ret = 0;
......
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