#include <linux/init.h>
#include <linux/wait.h>
#include <linux/time.h>
#include <linux/pnp.h>
#include <linux/module.h>
#include <sound/core.h>
#include <sound/initval.h>
#include <sound/mpu401.h>
#include <sound/opl3.h>
#include <sound/sb.h>
Go to the source code of this file.
|
| MODULE_DESCRIPTION ("Avance Logic ALS007/ALS1X0") |
|
| MODULE_SUPPORTED_DEVICE ("{{Diamond Technologies DT-019X},""{Avance Logic ALS-007}}""{{Avance Logic,ALS100 - PRO16PNP},""{Avance Logic,ALS110},""{Avance Logic,ALS120},""{Avance Logic,ALS200},""{3D Melody,MF1000},""{Digimate,3D Sound},""{Avance Logic,ALS120},""{RTL,RTL3000}}") |
|
| MODULE_AUTHOR ("Massimo Piccioni <[email protected]>") |
|
| MODULE_LICENSE ("GPL") |
|
| module_param_array (index, int, NULL, 0444) |
|
| MODULE_PARM_DESC (index,"Index value for Avance Logic based soundcard.") |
|
| module_param_array (id, charp, NULL, 0444) |
|
| MODULE_PARM_DESC (id,"ID string for Avance Logic based soundcard.") |
|
| module_param_array (enable, bool, NULL, 0444) |
|
| MODULE_PARM_DESC (enable,"Enable Avance Logic based soundcard.") |
|
| MODULE_ALIAS ("snd-dt019x") |
|
| MODULE_DEVICE_TABLE (pnp_card, snd_als100_pnpids) |
|
MODULE_ALIAS |
( |
"snd-dt019x" |
| ) |
|
MODULE_DESCRIPTION |
( |
"Avance Logic ALS007/ALS1X0" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pnp_card |
, |
|
|
snd_als100_pnpids |
|
|
) |
| |
module_param_array |
( |
id |
, |
|
|
charp |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
index |
, |
|
|
"Index value for Avance Logic based soundcard." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
id |
, |
|
|
"ID string for Avance Logic based soundcard." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
enable |
, |
|
|
"Enable Avance Logic based soundcard." |
|
|
) |
| |
MODULE_SUPPORTED_DEVICE |
( |
"{{Diamond Technologies DT-019X},""{Avance Logic ALS-007}}""{{Avance Logic,ALS100 - PRO16PNP},""{Avance Logic,ALS110},""{Avance Logic,ALS120},""{Avance Logic,ALS200},""{3D Melody,MF1000},""{Digimate,3D Sound},""{Avance Logic,ALS120},""{RTL,RTL3000}}" |
| ) |
|