summaryrefslogtreecommitdiffstats
path: root/drivers/media/video/meye.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab2006-05-19 18:08:09 +0200
committerMauro Carvalho Chehab2006-06-25 07:00:36 +0200
commitd6144028af6b151018c50c160e794a4d7f686333 (patch)
tree39f1596643e5a394398a319fd31758169e6cf32f /drivers/media/video/meye.c
parentV4L/DVB (4032): Fix Pinnacle 300i (diff)
downloadkernel-qcow2-linux-d6144028af6b151018c50c160e794a4d7f686333.tar.gz
kernel-qcow2-linux-d6144028af6b151018c50c160e794a4d7f686333.tar.xz
kernel-qcow2-linux-d6144028af6b151018c50c160e794a4d7f686333.zip
V4L/DVB (4036): Fix some compilation warnings
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/meye.c')
-rw-r--r--drivers/media/video/meye.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/meye.c b/drivers/media/video/meye.c
index 850bee97090c..595a3ea7574e 100644
--- a/drivers/media/video/meye.c
+++ b/drivers/media/video/meye.c
@@ -1682,13 +1682,13 @@ static unsigned int meye_poll(struct file *file, poll_table *wait)
static void meye_vm_open(struct vm_area_struct *vma)
{
- int idx = (int)vma->vm_private_data;
+ long idx = (long)vma->vm_private_data;
meye.vma_use_count[idx]++;
}
static void meye_vm_close(struct vm_area_struct *vma)
{
- int idx = (int)vma->vm_private_data;
+ long idx = (long)vma->vm_private_data;
meye.vma_use_count[idx]--;
}