diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-03-11 14:51:18 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-03-22 03:54:05 -0400 |
commit | 972d724caf8b6c461b585c800d6460a12c098a5e (patch) | |
tree | 24a3edd3c7f0944ad42b8f95d4d2dc5ba6e045da /drivers/media/video/bt8xx | |
parent | fa9448d9bdbae42bb10545f6fcfc980f38f53aa8 (diff) |
[media] several drivers: Fix a few gcc 4.6 warnings
au0828-dvb.c:99:6: warning: variable 'ptr' set but not used [-Wunused-but-set-variable]
au0828-video.c:1180:25: warning: variable 'maxheight' set but not used [-Wunused-but-set-variable]
au0828-video.c:1180:15: warning: variable 'maxwidth' set but not used [-Wunused-but-set-variable]
bttv-input.c:196:16: warning: variable 'current_jiffies' set but not used [-Wunused-but-set-variable]
Those variables are not used at all, so just remove them.
Cc: Steven Toth <stoth@hauppauge.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/bt8xx')
-rw-r--r-- | drivers/media/video/bt8xx/bttv-input.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/media/video/bt8xx/bttv-input.c b/drivers/media/video/bt8xx/bttv-input.c index e8b64bca9db2..677d70c0e1ce 100644 --- a/drivers/media/video/bt8xx/bttv-input.c +++ b/drivers/media/video/bt8xx/bttv-input.c | |||
@@ -193,12 +193,10 @@ static void bttv_rc5_timer_end(unsigned long data) | |||
193 | { | 193 | { |
194 | struct bttv_ir *ir = (struct bttv_ir *)data; | 194 | struct bttv_ir *ir = (struct bttv_ir *)data; |
195 | struct timeval tv; | 195 | struct timeval tv; |
196 | unsigned long current_jiffies; | ||
197 | u32 gap; | 196 | u32 gap; |
198 | u32 rc5 = 0; | 197 | u32 rc5 = 0; |
199 | 198 | ||
200 | /* get time */ | 199 | /* get time */ |
201 | current_jiffies = jiffies; | ||
202 | do_gettimeofday(&tv); | 200 | do_gettimeofday(&tv); |
203 | 201 | ||
204 | /* avoid overflow with gap >1s */ | 202 | /* avoid overflow with gap >1s */ |