diff options
author | Douglas Schilling Landgraf <dougsland@gmail.com> | 2008-03-23 16:25:00 -0300 |
---|---|---|
committer | Douglas Schilling Landgraf <dougsland@gmail.com> | 2008-03-23 16:25:00 -0300 |
commit | 67937414624d3b3f65a0cc20237f0f580b395cdc (patch) | |
tree | b675963d6cc353de7b7ab145060dbed03efc8507 /linux/drivers/media/video/w9968cf.c | |
parent | 9b2fc6e632ea78f1468b96849432b82c66645554 (diff) | |
download | mediapointer-dvb-s2-67937414624d3b3f65a0cc20237f0f580b395cdc.tar.gz mediapointer-dvb-s2-67937414624d3b3f65a0cc20237f0f580b395cdc.tar.bz2 |
[PATCH] add macro validation for v4l_compat_ioctl32.
From: Douglas Schilling Landgraf <dougsland@gmail.com>
Added macro CONFIG_COMPAT for v4l_compat_ioctl32.
Signed-off-by: Douglas Schilling Landgraf <dougsland@gmail.com>
Diffstat (limited to 'linux/drivers/media/video/w9968cf.c')
-rw-r--r-- | linux/drivers/media/video/w9968cf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/video/w9968cf.c b/linux/drivers/media/video/w9968cf.c index e0bfb4270..712c8c066 100644 --- a/linux/drivers/media/video/w9968cf.c +++ b/linux/drivers/media/video/w9968cf.c @@ -3469,7 +3469,9 @@ static const struct file_operations w9968cf_fops = { .release = w9968cf_release, .read = w9968cf_read, .ioctl = w9968cf_ioctl, +#ifdef CONFIG_COMPAT .compat_ioctl = v4l_compat_ioctl32, +#endif .mmap = w9968cf_mmap, .llseek = no_llseek, }; |