#include <linux/module.h>
#include <linux/init.h>
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/kthread.h>
#include <linux/file.h>
#include <linux/slab.h>
#include <linux/freezer.h>
#include <media/videobuf-core.h>
#include <media/videobuf-dvb.h>
Go to the source code of this file.
|
| MODULE_AUTHOR ("Gerd Knorr <[email protected]> [SuSE Labs]") |
|
| MODULE_LICENSE ("GPL") |
|
| module_param (debug, int, 0644) |
|
| MODULE_PARM_DESC (debug,"enable debug messages") |
|
int | videobuf_dvb_register_bus (struct videobuf_dvb_frontends *f, struct module *module, void *adapter_priv, struct device *device, short *adapter_nr, int mfe_shared) |
|
| EXPORT_SYMBOL (videobuf_dvb_register_bus) |
|
void | videobuf_dvb_unregister_bus (struct videobuf_dvb_frontends *f) |
|
| EXPORT_SYMBOL (videobuf_dvb_unregister_bus) |
|
struct videobuf_dvb_frontend * | videobuf_dvb_get_frontend (struct videobuf_dvb_frontends *f, int id) |
|
| EXPORT_SYMBOL (videobuf_dvb_get_frontend) |
|
int | videobuf_dvb_find_frontend (struct videobuf_dvb_frontends *f, struct dvb_frontend *p) |
|
| EXPORT_SYMBOL (videobuf_dvb_find_frontend) |
|
struct videobuf_dvb_frontend * | videobuf_dvb_alloc_frontend (struct videobuf_dvb_frontends *f, int id) |
|
| EXPORT_SYMBOL (videobuf_dvb_alloc_frontend) |
|
void | videobuf_dvb_dealloc_frontends (struct videobuf_dvb_frontends *f) |
|
| EXPORT_SYMBOL (videobuf_dvb_dealloc_frontends) |
|
#define dprintk |
( |
|
fmt, |
|
|
|
arg... |
|
) |
| |
MODULE_PARM_DESC |
( |
debug |
, |
|
|
"enable debug messages" |
|
|
) |
| |