5 #include <dvb_frontend.h>
8 /* filling that the job of the driver */
10 struct dvb_frontend *frontend;
11 struct videobuf_queue dvbq;
13 /* video-buf-dvb state info */
15 struct task_struct *thread;
18 /* videobuf_dvb_(un)register manges this */
19 struct dvb_demux demux;
21 struct dmx_frontend fe_hw;
22 struct dmx_frontend fe_mem;
26 struct videobuf_dvb_frontend {
27 struct list_head felist;
29 struct videobuf_dvb dvb;
32 struct videobuf_dvb_frontends {
33 struct list_head felist;
35 struct dvb_adapter adapter;
36 int active_fe_id; /* Indicates which frontend in the felist is in use */
37 int gate; /* Frontend with gate control 0=!MFE,1=fe0,2=fe1 etc */
40 int videobuf_dvb_register_bus(struct videobuf_dvb_frontends *f,
41 struct module *module,
43 struct device *device,
47 void videobuf_dvb_unregister_bus(struct videobuf_dvb_frontends *f);
49 struct videobuf_dvb_frontend * videobuf_dvb_alloc_frontend(struct videobuf_dvb_frontends *f, int id);
51 struct videobuf_dvb_frontend * videobuf_dvb_get_frontend(struct videobuf_dvb_frontends *f, int id);
52 int videobuf_dvb_find_frontend(struct videobuf_dvb_frontends *f, struct dvb_frontend *p);