Linux Kernel
3.7.1
|
#include <linux/fs.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/sound.h>
#include <linux/soundcard.h>
#include <linux/mutex.h>
#include <asm/uaccess.h>
#include <init.h>
#include <os.h>
Go to the source code of this file.
Data Structures | |
struct | hostaudio_state |
struct | hostmixer_state |
Macros | |
#define | HOSTAUDIO_DEV_DSP "/dev/sound/dsp" |
#define | HOSTAUDIO_DEV_MIXER "/dev/sound/mixer" |
#define | DSP_HELP |
#define | MIXER_HELP |
Functions | |
module_param (dsp, charp, 0644) | |
MODULE_PARM_DESC (dsp, DSP_HELP) | |
module_param (mixer, charp, 0644) | |
MODULE_PARM_DESC (mixer, MIXER_HELP) | |
__uml_setup ("dsp=", set_dsp,"dsp=<dsp device>\n"DSP_HELP) | |
MODULE_AUTHOR ("Steve Schmidtke") | |
MODULE_DESCRIPTION ("UML Audio Relay") | |
MODULE_LICENSE ("GPL") | |
module_init (hostaudio_init_module) | |
module_exit (hostaudio_cleanup_module) | |
Variables | |
struct { | |
int dev_audio | |
int dev_mixer | |
} | module_data |
#define DSP_HELP |
Definition at line 35 of file hostaudio_kern.c.
#define HOSTAUDIO_DEV_DSP "/dev/sound/dsp" |
Definition at line 24 of file hostaudio_kern.c.
#define HOSTAUDIO_DEV_MIXER "/dev/sound/mixer" |
Definition at line 25 of file hostaudio_kern.c.
#define MIXER_HELP |
Definition at line 39 of file hostaudio_kern.c.
__uml_setup | ( | ) |
MODULE_AUTHOR | ( | "Steve Schmidtke" | ) |
MODULE_DESCRIPTION | ( | "UML Audio Relay" | ) |
module_exit | ( | hostaudio_cleanup_module | ) |
module_init | ( | hostaudio_init_module | ) |
MODULE_LICENSE | ( | "GPL" | ) |
module_param | ( | dsp | , |
charp | , | ||
0644 | |||
) |
module_param | ( | mixer | , |
charp | , | ||
0644 | |||
) |
MODULE_PARM_DESC | ( | mixer | , |
MIXER_HELP | |||
) |
int dev_audio |
Definition at line 319 of file hostaudio_kern.c.
int dev_mixer |
Definition at line 320 of file hostaudio_kern.c.
struct { ... } module_data |