[PATCH] v4l: 728: vidiocsfreq and vidiocgfreq expect an unsigned long as argument
- VIDIOCSFREQ and VIDIOCGFREQ expect an unsigned long as argument. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Michael Krufky <mkrufky@m1k.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
a866623cdc
commit
376f269e47
|
@ -708,7 +708,7 @@ v4l_compat_translate_ioctl(struct inode *inode,
|
|||
}
|
||||
case VIDIOCGFREQ: /* get frequency */
|
||||
{
|
||||
int *freq = arg;
|
||||
unsigned long *freq = arg;
|
||||
|
||||
freq2.tuner = 0;
|
||||
err = drv(inode, file, VIDIOC_G_FREQUENCY, &freq2);
|
||||
|
@ -720,7 +720,7 @@ v4l_compat_translate_ioctl(struct inode *inode,
|
|||
}
|
||||
case VIDIOCSFREQ: /* set frequency */
|
||||
{
|
||||
int *freq = arg;
|
||||
unsigned long *freq = arg;
|
||||
|
||||
freq2.tuner = 0;
|
||||
drv(inode, file, VIDIOC_G_FREQUENCY, &freq2);
|
||||
|
|
Loading…
Reference in New Issue