diff options
Diffstat (limited to 'drivers/media/video/arv.c')
-rw-r--r-- | drivers/media/video/arv.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/media/video/arv.c b/drivers/media/video/arv.c index c94a4d0f2804..8c7d1958856b 100644 --- a/drivers/media/video/arv.c +++ b/drivers/media/video/arv.c | |||
@@ -125,8 +125,8 @@ static unsigned char yuv[MAX_AR_FRAME_BYTES]; | |||
125 | /* default frequency */ | 125 | /* default frequency */ |
126 | #define DEFAULT_FREQ 50 /* 50 or 75 (MHz) is available as BCLK */ | 126 | #define DEFAULT_FREQ 50 /* 50 or 75 (MHz) is available as BCLK */ |
127 | static int freq = DEFAULT_FREQ; /* BCLK: available 50 or 70 (MHz) */ | 127 | static int freq = DEFAULT_FREQ; /* BCLK: available 50 or 70 (MHz) */ |
128 | static int vga = 0; /* default mode(0:QVGA mode, other:VGA mode) */ | 128 | static int vga; /* default mode(0:QVGA mode, other:VGA mode) */ |
129 | static int vga_interlace = 0; /* 0 is normal mode for, else interlace mode */ | 129 | static int vga_interlace; /* 0 is normal mode for, else interlace mode */ |
130 | module_param(freq, int, 0); | 130 | module_param(freq, int, 0); |
131 | module_param(vga, int, 0); | 131 | module_param(vga, int, 0); |
132 | module_param(vga_interlace, int, 0); | 132 | module_param(vga_interlace, int, 0); |
@@ -747,7 +747,9 @@ static const struct file_operations ar_fops = { | |||
747 | .release = video_exclusive_release, | 747 | .release = video_exclusive_release, |
748 | .read = ar_read, | 748 | .read = ar_read, |
749 | .ioctl = ar_ioctl, | 749 | .ioctl = ar_ioctl, |
750 | #ifdef CONFIG_COMPAT | ||
750 | .compat_ioctl = v4l_compat_ioctl32, | 751 | .compat_ioctl = v4l_compat_ioctl32, |
752 | #endif | ||
751 | .llseek = no_llseek, | 753 | .llseek = no_llseek, |
752 | }; | 754 | }; |
753 | 755 | ||