diff options
author | Devin Heitmueller <dheitmueller@kernellabs.com> | 2010-10-09 19:43:53 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 11:16:34 +0100 |
commit | 78ca500559b5a4f16a95c198b3e7bdfac8455bf8 (patch) | |
tree | 8b8c826cf436b5cbdb0d586dda7abcfa4f596768 /drivers/media/video/au0828/au0828.h | |
parent | [media] au0828: continue video streaming even when no ITU-656 coming in (diff) | |
download | linux-78ca500559b5a4f16a95c198b3e7bdfac8455bf8.tar.xz linux-78ca500559b5a4f16a95c198b3e7bdfac8455bf8.zip |
[media] au0828: fixes for timeout on no video
The first pass of fixes to cause the driver to continue streaming even when
there is no video arriving over the ITU656 bus were not adequate. Continue
the work from the previous patch.
Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/au0828/au0828.h')
-rw-r--r-- | drivers/media/video/au0828/au0828.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/video/au0828/au0828.h b/drivers/media/video/au0828/au0828.h index ef46a889da20..9cde35321824 100644 --- a/drivers/media/video/au0828/au0828.h +++ b/drivers/media/video/au0828/au0828.h @@ -205,7 +205,9 @@ struct au0828_dev { struct video_device *vdev; struct video_device *vbi_dev; struct timer_list vid_timeout; + int vid_timeout_running; struct timer_list vbi_timeout; + int vbi_timeout_running; int width; int height; int vbi_width; |