#include <linux/module.h>
#include <linux/init.h>
#include <linux/device.h>
#include <linux/interrupt.h>
#include <linux/usb.h>
#include <linux/slab.h>
#include <linux/vmalloc.h>
#include <linux/delay.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/control.h>
#include <sound/initval.h>
#include "tm6000.h"
#include "tm6000-regs.h"
Go to the source code of this file.
|
| module_param_array (enable, bool, NULL, 0444) |
|
| MODULE_PARM_DESC (enable,"Enable tm6000x soundcard. default enabled.") |
|
| module_param_array (index, int, NULL, 0444) |
|
| MODULE_PARM_DESC (index,"Index value for tm6000x capture interface(s).") |
|
| MODULE_DESCRIPTION ("ALSA driver module for tm5600/tm6000/tm6010 based TV cards") |
|
| MODULE_AUTHOR ("Mauro Carvalho Chehab <[email protected]>") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_SUPPORTED_DEVICE ("{{Trident,tm5600},""{{Trident,tm6000},""{{Trident,tm6010}") |
|
| module_param (debug, int, 0644) |
|
| MODULE_PARM_DESC (debug,"enable debug messages") |
|
| module_init (tm6000_alsa_register) |
|
| module_exit (tm6000_alsa_unregister) |
|
#define DEFAULT_FIFO_SIZE 4096 |
module_exit |
( |
tm6000_alsa_unregister |
| ) |
|
module_init |
( |
tm6000_alsa_register |
| ) |
|
MODULE_PARM_DESC |
( |
enable |
, |
|
|
"Enable tm6000x soundcard. default enabled." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
debug |
, |
|
|
"enable debug messages" |
|
|
) |
| |
MODULE_SUPPORTED_DEVICE |
( |
| ) |
|