#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/dma-mapping.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/slab.h>
#include <sound/core.h>
#include <sound/initval.h>
#include <sound/info.h>
#include <sound/control.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include "mixart.h"
#include "mixart_hwdep.h"
#include "mixart_core.h"
#include "mixart_mixer.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("Digigram <[email protected]>") |
|
| MODULE_DESCRIPTION ("Digigram "CARD_NAME) |
|
| 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_DEVICE_TABLE (pci, snd_mixart_ids) |
|
struct mixart_pipe * | snd_mixart_add_ref_pipe (struct snd_mixart *chip, int pcm_number, int capture, int monitoring) |
|
int | snd_mixart_kill_ref_pipe (struct mixart_mgr *mgr, struct mixart_pipe *pipe, int monitoring) |
|
int | snd_mixart_create_pcm (struct snd_mixart *chip) |
|
| module_pci_driver (mixart_driver) |
|
#define CARD_NAME "miXart" |
MODULE_DESCRIPTION |
( |
"Digigram " |
CARD_NAME | ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
snd_mixart_ids |
|
|
) |
| |
module_param_array |
( |
id |
, |
|
|
charp |
, |
|
|
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_pci_driver |
( |
mixart_driver |
| ) |
|
MODULE_SUPPORTED_DEVICE |
( |
"{{Digigram,"CARD_NAME"}}" |
| ) |
|