diff options
author | Christopher Brannon <cmbrannon79@gmail.com> | 2010-10-15 04:23:56 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-15 23:22:37 +0400 |
commit | e66c3d84759b84cf4816b252f15b8a023e7bd659 (patch) | |
tree | 4a71fa46456c20db737724d865fe38029d634bbf | |
parent | 75d6282d8b2d58b4722e63225f3951e1c9b0ebf8 (diff) | |
download | linux-e66c3d84759b84cf4816b252f15b8a023e7bd659.tar.xz |
staging: speakup: speakup_ltlk.c: style fixes
* Clean this file based on reports from checkpatch.pl.
* Remove an unused function-like macro.
Signed-off-by: Christopher Brannon <chris@the-brannons.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/speakup/speakup_ltlk.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/drivers/staging/speakup/speakup_ltlk.c b/drivers/staging/speakup/speakup_ltlk.c index d8569591c5ac..971de1a13712 100644 --- a/drivers/staging/speakup/speakup_ltlk.c +++ b/drivers/staging/speakup/speakup_ltlk.c @@ -28,22 +28,21 @@ #include "speakup_dtlk.h" /* local header file for LiteTalk values */ #define DRV_VERSION "2.11" -#define synth_full( ) ( !( inb( synth_port_tts + UART_MSR ) & UART_MSR_CTS ) ) #define PROCSPEECH 0x0d static int synth_probe(struct spk_synth *synth); static struct var_t vars[] = { - { CAPS_START, .u.s = {"\x01+35p" }}, - { CAPS_STOP, .u.s = {"\x01-35p" }}, - { RATE, .u.n = {"\x01%ds", 8, 0, 9, 0, 0, NULL }}, - { PITCH, .u.n = {"\x01%dp", 50, 0, 99, 0, 0, NULL }}, - { VOL, .u.n = {"\x01%dv", 5, 0, 9, 0, 0, NULL }}, - { TONE, .u.n = {"\x01%dx", 1, 0, 2, 0, 0, NULL }}, - { PUNCT, .u.n = {"\x01%db", 7, 0, 15, 0, 0, NULL }}, - { VOICE, .u.n = {"\x01%do", 0, 0, 7, 0, 0, NULL }}, - { FREQUENCY, .u.n = {"\x01%df", 5, 0, 9, 0, 0, NULL }}, - { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL }}, + { CAPS_START, .u.s = {"\x01+35p" } }, + { CAPS_STOP, .u.s = {"\x01-35p" } }, + { RATE, .u.n = {"\x01%ds", 8, 0, 9, 0, 0, NULL } }, + { PITCH, .u.n = {"\x01%dp", 50, 0, 99, 0, 0, NULL } }, + { VOL, .u.n = {"\x01%dv", 5, 0, 9, 0, 0, NULL } }, + { TONE, .u.n = {"\x01%dx", 1, 0, 2, 0, 0, NULL } }, + { PUNCT, .u.n = {"\x01%db", 7, 0, 15, 0, 0, NULL } }, + { VOICE, .u.n = {"\x01%do", 0, 0, 7, 0, 0, NULL } }, + { FREQUENCY, .u.n = {"\x01%df", 5, 0, 9, 0, 0, NULL } }, + { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } }, V_LAST_VAR }; |