#include <linux/init.h>
#include <linux/pci.h>
#include <linux/time.h>
#include <linux/module.h>
#include <sound/core.h>
#include "ymfpci.h"
#include <sound/mpu401.h>
#include <sound/opl3.h>
#include <sound/initval.h>
Go to the source code of this file.
|
| MODULE_AUTHOR ("Jaroslav Kysela <[email protected]>") |
|
| MODULE_DESCRIPTION ("Yamaha DS-1 PCI") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_SUPPORTED_DEVICE ("{{Yamaha,YMF724},""{Yamaha,YMF724F},""{Yamaha,YMF740},""{Yamaha,YMF740C},""{Yamaha,YMF744},""{Yamaha,YMF754}}") |
|
| module_param_array (index, int, NULL, 0444) |
|
| MODULE_PARM_DESC (index,"Index value for the Yamaha DS-1 PCI soundcard.") |
|
| module_param_array (id, charp, NULL, 0444) |
|
| MODULE_PARM_DESC (id,"ID string for the Yamaha DS-1 PCI soundcard.") |
|
| module_param_array (enable, bool, NULL, 0444) |
|
| MODULE_PARM_DESC (enable,"Enable Yamaha DS-1 soundcard.") |
|
| module_param_array (mpu_port, long, NULL, 0444) |
|
| MODULE_PARM_DESC (mpu_port,"MPU-401 Port.") |
|
| module_param_array (fm_port, long, NULL, 0444) |
|
| MODULE_PARM_DESC (fm_port,"FM OPL-3 Port.") |
|
| module_param_array (rear_switch, bool, NULL, 0444) |
|
| MODULE_PARM_DESC (rear_switch,"Enable shared rear/line-in switch") |
|
| MODULE_DEVICE_TABLE (pci, snd_ymfpci_ids) |
|
void | snd_ymfpci_free_gameport (struct snd_ymfpci *chip) |
|
| module_pci_driver (ymfpci_driver) |
|
MODULE_DESCRIPTION |
( |
"Yamaha DS-1 PCI" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
snd_ymfpci_ids |
|
|
) |
| |
module_param_array |
( |
id |
, |
|
|
charp |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
module_param_array |
( |
mpu_port |
, |
|
|
long |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
module_param_array |
( |
fm_port |
, |
|
|
long |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
module_param_array |
( |
rear_switch |
, |
|
|
bool |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
enable |
, |
|
|
"Enable Yamaha DS-1 soundcard." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
mpu_port |
, |
|
|
"MPU-401 Port." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
fm_port |
, |
|
|
"FM OPL-3 Port." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
rear_switch |
, |
|
|
"Enable shared rear/line-in switch" |
|
|
) |
| |
module_pci_driver |
( |
ymfpci_driver |
| ) |
|
MODULE_SUPPORTED_DEVICE |
( |
"{{Yamaha,YMF724},""{Yamaha,YMF724F},""{Yamaha,YMF740},""{Yamaha,YMF740C},""{Yamaha,YMF744},""{Yamaha,YMF754}}" |
| ) |
|