aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/em28xx/em28xx.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2008-04-17 20:38:38 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:09:41 -0400
commit52284c3e47bf502aaff72ab2ede509193b628b1b (patch)
treefc7d554be7fa0cc2872c585200027eceb17c0d7a /drivers/media/video/em28xx/em28xx.h
parentbdfbf9520372daf2b4d6941474c92310848ccb27 (diff)
V4L/DVB (7599): em28xx-dvb: videobuf callbacks are waiting for em28xx_fh
Thanks to Devin Heitmueller <devin.heitmueller@gmail.com> for pointing this issue. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/em28xx/em28xx.h')
-rw-r--r--drivers/media/video/em28xx/em28xx.h23
1 files changed, 13 insertions, 10 deletions
diff --git a/drivers/media/video/em28xx/em28xx.h b/drivers/media/video/em28xx/em28xx.h
index 10f64652c04f..3786dd819bbd 100644
--- a/drivers/media/video/em28xx/em28xx.h
+++ b/drivers/media/video/em28xx/em28xx.h
@@ -304,6 +304,18 @@ struct em28xx_audio {
304 spinlock_t slock; 304 spinlock_t slock;
305}; 305};
306 306
307struct em28xx;
308
309struct em28xx_fh {
310 struct em28xx *dev;
311 unsigned int stream_on:1; /* Locks streams */
312 int radio;
313
314 struct videobuf_queue vb_vidq;
315
316 enum v4l2_buf_type type;
317};
318
307/* main device struct */ 319/* main device struct */
308struct em28xx { 320struct em28xx {
309 /* generic device properties */ 321 /* generic device properties */
@@ -401,19 +413,10 @@ struct em28xx {
401#if defined(CONFIG_VIDEO_EM28XX_DVB) || defined(CONFIG_VIDEO_EM28XX_DVB_MODULE) 413#if defined(CONFIG_VIDEO_EM28XX_DVB) || defined(CONFIG_VIDEO_EM28XX_DVB_MODULE)
402 struct videobuf_dvb dvb; 414 struct videobuf_dvb dvb;
403 struct videobuf_queue_ops *qops; 415 struct videobuf_queue_ops *qops;
416 struct em28xx_fh dvb_fh;
404#endif 417#endif
405}; 418};
406 419
407struct em28xx_fh {
408 struct em28xx *dev;
409 unsigned int stream_on:1; /* Locks streams */
410 int radio;
411
412 struct videobuf_queue vb_vidq;
413
414 enum v4l2_buf_type type;
415};
416
417struct em28xx_ops { 420struct em28xx_ops {
418 struct list_head next; 421 struct list_head next;
419 char *name; 422 char *name;