#include <linux/init.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/bitmap.h>
#include <linux/usb.h>
#include <linux/i2c.h>
#include <linux/mm.h>
#include <linux/mutex.h>
#include <linux/slab.h>
#include "em28xx.h"
#include <media/v4l2-common.h>
#include <media/v4l2-ioctl.h>
#include <media/v4l2-chip-ident.h>
#include <media/msp3400.h>
#include <media/tuner.h>
Go to the source code of this file.
|
| module_param (isoc_debug, int, 0644) |
|
| MODULE_PARM_DESC (isoc_debug,"enable debug messages [isoc transfers]") |
|
| MODULE_AUTHOR (DRIVER_AUTHOR) |
|
| MODULE_DESCRIPTION (DRIVER_DESC) |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_VERSION (EM28XX_VERSION) |
|
| module_param_array (video_nr, int, NULL, 0444) |
|
| module_param_array (vbi_nr, int, NULL, 0444) |
|
| module_param_array (radio_nr, int, NULL, 0444) |
|
| MODULE_PARM_DESC (video_nr,"video device numbers") |
|
| MODULE_PARM_DESC (vbi_nr,"vbi device numbers") |
|
| MODULE_PARM_DESC (radio_nr,"radio device numbers") |
|
| module_param (video_debug, int, 0644) |
|
| MODULE_PARM_DESC (video_debug,"enable debug messages [video]") |
|
void | em28xx_release_analog_resources (struct em28xx *dev) |
|
int | em28xx_register_analog_devices (struct em28xx *dev) |
|
#define em28xx_isocdbg |
( |
|
fmt, |
|
|
|
arg... |
|
) |
| |
Value:do {\
if (isoc_debug) { \
dev->name, __func__ , ##
arg); \
} \
} while (0)
Definition at line 64 of file em28xx-video.c.
#define EM28XX_VERSION "0.1.3" |
#define em28xx_videodbg |
( |
|
fmt, |
|
|
|
arg... |
|
) |
| |
Value:do {\
if (video_debug) \
dev->name, __func__ , ##
arg); }
while (0)
Definition at line 55 of file em28xx-video.c.
module_param |
( |
isoc_debug |
, |
|
|
int |
, |
|
|
0644 |
|
|
) |
| |
module_param_array |
( |
vbi_nr |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
module_param_array |
( |
radio_nr |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
isoc_debug |
, |
|
|
"enable debug messages " |
[isoc transfers] |
|
) |
| |
MODULE_PARM_DESC |
( |
vbi_nr |
, |
|
|
"vbi device numbers" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
radio_nr |
, |
|
|
"radio device numbers" |
|
|
) |
| |