#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <sound/core.h>
#include <sound/initval.h>
#include <sound/tlv.h>
#include "vx222.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("Takashi Iwai <[email protected]>") |
|
| MODULE_DESCRIPTION ("Digigram VX222 V2/Mic") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_SUPPORTED_DEVICE ("{{Digigram,"CARD_NAME"}}") |
|
| module_param_array (index, int, NULL, 0444) |
|
| MODULE_PARM_DESC (index,"Index value for Digigram "CARD_NAME" soundcard.") |
|
| module_param_array (id, charp, NULL, 0444) |
|
| MODULE_PARM_DESC (id,"ID string for Digigram "CARD_NAME" soundcard.") |
|
| module_param_array (enable, bool, NULL, 0444) |
|
| MODULE_PARM_DESC (enable,"Enable Digigram "CARD_NAME" soundcard.") |
|
| module_param_array (mic, bool, NULL, 0444) |
|
| MODULE_PARM_DESC (mic,"Enable Microphone.") |
|
| module_param_array (ibl, int, NULL, 0444) |
|
| MODULE_PARM_DESC (ibl,"Capture IBL size.") |
|
| MODULE_DEVICE_TABLE (pci, snd_vx222_ids) |
|
| module_pci_driver (vx222_driver) |
|
#define CARD_NAME "VX222" |
#define SND_VX222_PM_OPS NULL |
- Enumerator:
VX_PCI_VX222_OLD |
|
VX_PCI_VX222_NEW |
|
Definition at line 58 of file vx222.c.
MODULE_DESCRIPTION |
( |
"Digigram VX222 V2/Mic" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
snd_vx222_ids |
|
|
) |
| |
module_param_array |
( |
id |
, |
|
|
charp |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
module_param_array |
( |
ibl |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
index |
, |
|
|
"Index value for Digigram "CARD_NAME" soundcard." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
id |
, |
|
|
"ID string for Digigram "CARD_NAME" soundcard." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
enable |
, |
|
|
"Enable Digigram "CARD_NAME" soundcard." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
mic |
, |
|
|
"Enable Microphone." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
ibl |
, |
|
|
"Capture IBL size." |
|
|
) |
| |
module_pci_driver |
( |
vx222_driver |
| ) |
|
MODULE_SUPPORTED_DEVICE |
( |
"{{Digigram,"CARD_NAME"}}" |
| ) |
|