diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-08-23 17:12:08 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 23:02:46 -0400 |
commit | ba366a23b68029fc8560acf1ad8735eed910f962 (patch) | |
tree | 49155a40b2d6e438c57fd68cb803a073d8b7990f /include/media/videobuf-dvb.h | |
parent | 79618cf41337ccedb9abeee059ce76aac7962739 (diff) |
V4L/DVB (6257): Rename video-buf-dvb to videobuf-dvb to be consistent with the other patches
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'include/media/videobuf-dvb.h')
-rw-r--r-- | include/media/videobuf-dvb.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/include/media/videobuf-dvb.h b/include/media/videobuf-dvb.h new file mode 100644 index 000000000000..8233cafdeef6 --- /dev/null +++ b/include/media/videobuf-dvb.h | |||
@@ -0,0 +1,37 @@ | |||
1 | #include <dvbdev.h> | ||
2 | #include <dmxdev.h> | ||
3 | #include <dvb_demux.h> | ||
4 | #include <dvb_net.h> | ||
5 | #include <dvb_frontend.h> | ||
6 | |||
7 | struct videobuf_dvb { | ||
8 | /* filling that the job of the driver */ | ||
9 | char *name; | ||
10 | struct dvb_frontend *frontend; | ||
11 | struct videobuf_queue dvbq; | ||
12 | |||
13 | /* video-buf-dvb state info */ | ||
14 | struct mutex lock; | ||
15 | struct task_struct *thread; | ||
16 | int nfeeds; | ||
17 | |||
18 | /* videobuf_dvb_(un)register manges this */ | ||
19 | struct dvb_adapter adapter; | ||
20 | struct dvb_demux demux; | ||
21 | struct dmxdev dmxdev; | ||
22 | struct dmx_frontend fe_hw; | ||
23 | struct dmx_frontend fe_mem; | ||
24 | struct dvb_net net; | ||
25 | }; | ||
26 | |||
27 | int videobuf_dvb_register(struct videobuf_dvb *dvb, | ||
28 | struct module *module, | ||
29 | void *adapter_priv, | ||
30 | struct device *device); | ||
31 | void videobuf_dvb_unregister(struct videobuf_dvb *dvb); | ||
32 | |||
33 | /* | ||
34 | * Local variables: | ||
35 | * c-basic-offset: 8 | ||
36 | * End: | ||
37 | */ | ||