#include <linux/init.h>
#include <linux/slab.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <sound/core.h>
#include <sound/rawmidi.h>
#include <sound/seq_kernel.h>
#include <sound/seq_device.h>
#include <sound/seq_midi_event.h>
#include <sound/initval.h>
Go to the source code of this file.
MODULE_AUTHOR |
( |
"Frank van de Pol <[email protected]> |
, |
|
|
Jaroslav Kysela< perex @perex.cz >" |
|
|
) |
| |
MODULE_DESCRIPTION |
( |
"Advanced Linux Sound Architecture sequencer MIDI synth." |
| ) |
|
module_param |
( |
output_buffer_size |
, |
|
|
int |
, |
|
|
0644 |
|
|
) |
| |
module_param |
( |
input_buffer_size |
, |
|
|
int |
, |
|
|
0644 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
output_buffer_size |
, |
|
|
"Output buffer size in bytes." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
input_buffer_size |
, |
|
|
"Input buffer size in bytes." |
|
|
) |
| |