#include <linux/init.h>
#include <linux/pci.h>
#include <linux/dma-mapping.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/delay.h>
#include <linux/io.h>
#include <linux/module.h>
#include <sound/core.h>
#include <sound/initval.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/control.h>
#include "saa7146.h"
#include "aw2-saa7146.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("Cedric Bregardis <[email protected]>, ""Jean-Christian Hassler <[email protected]>") |
|
| MODULE_DESCRIPTION ("Emagic Audiowerk 2 sound driver") |
|
| MODULE_LICENSE ("GPL") |
|
| module_param_array (index, int, NULL, 0444) |
|
| MODULE_PARM_DESC (index,"Index value for Audiowerk2 soundcard.") |
|
| module_param_array (id, charp, NULL, 0444) |
|
| MODULE_PARM_DESC (id,"ID string for the Audiowerk2 soundcard.") |
|
| module_param_array (enable, bool, NULL, 0444) |
|
| MODULE_PARM_DESC (enable,"Enable Audiowerk2 soundcard.") |
|
| MODULE_DEVICE_TABLE (pci, snd_aw2_ids) |
|
| module_pci_driver (aw2_driver) |
|
#define CTL_ROUTE_ANALOG 0 |
#define CTL_ROUTE_DIGITAL 1 |
MODULE_AUTHOR |
( |
"Cedric Bregardis <[email protected]> |
, |
|
|
""Jean-Christian Hassler< jhassler @free.fr >" |
|
|
) |
| |
MODULE_DESCRIPTION |
( |
"Emagic Audiowerk 2 sound driver" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
snd_aw2_ids |
|
|
) |
| |
module_param_array |
( |
id |
, |
|
|
charp |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
index |
, |
|
|
"Index value for Audiowerk2 soundcard." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
enable |
, |
|
|
"Enable Audiowerk2 soundcard." |
|
|
) |
| |
module_pci_driver |
( |
aw2_driver |
| ) |
|