#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/types.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/mutex.h>
#include <linux/gfp.h>
#include <asm/irq.h>
#include <asm/io.h>
#include "sound_config.h"
#include "sound_firmware.h"
#include "msnd.h"
#include "msnd_classic.h"
#include "msnd_pinnacle.h"
Go to the source code of this file.
|
| module_param (io, int, 0) |
|
| module_param (irq, int, 0) |
|
| module_param (mem, int, 0) |
|
| module_param (write_ndelay, int, 0) |
|
| module_param (fifosize, int, 0) |
|
| module_param (calibrate_signal, int, 0) |
|
| module_param (digital, bool, 0) |
|
| module_param (cfg, int, 0) |
|
| module_param (reset, int, 0) |
|
| module_param (mpu_io, int, 0) |
|
| module_param (mpu_irq, int, 0) |
|
| module_param (ide_io0, int, 0) |
|
| module_param (ide_io1, int, 0) |
|
| module_param (ide_irq, int, 0) |
|
| module_param (joystick_io, int, 0) |
|
| module_init (msnd_init) |
|
| module_exit (msdn_cleanup) |
|
#define CONFIG_MSND_CALSIGNAL 0 |
#define CONFIG_MSND_WRITE_NDELAY 1 |
#define CONFIG_MSNDPIN_CFG -1 |
#define CONFIG_MSNDPIN_DIGITAL 0 |
#define CONFIG_MSNDPIN_IDE_IO0 0 |
#define CONFIG_MSNDPIN_IDE_IO1 0 |
#define CONFIG_MSNDPIN_IDE_IRQ 0 |
#define CONFIG_MSNDPIN_JOYSTICK_IO 0 |
#define CONFIG_MSNDPIN_MPU_IO 0 |
#define CONFIG_MSNDPIN_MPU_IRQ 0 |
#define get_play_delay_jiffies |
( |
|
size | ) |
|
#define get_rec_delay_jiffies |
( |
|
size | ) |
|
#define LOGNAME "msnd_pinnacle" |
#define set_mixer_info |
( |
| ) |
|
#define update_pot |
( |
|
d, |
|
|
|
s, |
|
|
|
ar |
|
) |
| |
#define update_potm |
( |
|
d, |
|
|
|
s, |
|
|
|
ar |
|
) |
| |
#define update_volm |
( |
|
a, |
|
|
|
b |
|
) |
| |
module_exit |
( |
msdn_cleanup |
| ) |
|
module_init |
( |
msnd_init |
| ) |
|
module_param |
( |
io |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
irq |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
mem |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
write_ndelay |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
fifosize |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
calibrate_signal |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
cfg |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
mpu_io |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
mpu_irq |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
ide_io0 |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
ide_io1 |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
ide_irq |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
joystick_io |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |