|
Linux Kernel
3.7.1
|
#include <linux/unistd.h>#include <linux/miscdevice.h>#include <linux/poll.h>#include <linux/sched.h>#include "spk_priv.h"#include "speakup.h"Go to the source code of this file.
Macros | |
| #define | DRV_VERSION "2.6" |
| #define | SOFTSYNTH_MINOR 26 /* might as well give it one more than /dev/synth */ |
| #define | PROCSPEECH 0x0d |
| #define | CLEAR_SYNTH 0x18 |
Functions | |
| module_param_named (start, synth_soft.startup, short, S_IRUGO) | |
| MODULE_PARM_DESC (start,"Start the synthesizer once it is loaded.") | |
| module_init (soft_init) | |
| module_exit (soft_exit) | |
| MODULE_AUTHOR ("Kirk Reiser <kirk@braille.uwo.ca>") | |
| MODULE_DESCRIPTION ("Speakup userspace software synthesizer support") | |
| MODULE_LICENSE ("GPL") | |
| MODULE_VERSION (DRV_VERSION) | |
| #define CLEAR_SYNTH 0x18 |
Definition at line 35 of file speakup_soft.c.
| #define DRV_VERSION "2.6" |
Definition at line 32 of file speakup_soft.c.
| #define PROCSPEECH 0x0d |
Definition at line 34 of file speakup_soft.c.
Definition at line 33 of file speakup_soft.c.
| MODULE_AUTHOR | ( | "Kirk Reiser <kirk@braille.uwo.ca>" | ) |
| module_exit | ( | soft_exit | ) |
| module_init | ( | soft_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
| MODULE_VERSION | ( | DRV_VERSION | ) |
1.8.2