aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/speakup/speakup_spkout.c
diff options
context:
space:
mode:
authorChristopher Brannon <cmbrannon79@gmail.com>2010-10-14 19:23:58 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-10-15 12:22:38 -0700
commit0d42cfe4c19a8e287d77b5bc1b33bc89c17caa4e (patch)
tree2c6ffacc83e35544c5d0e45bbe311a9579935f02 /drivers/staging/speakup/speakup_spkout.c
parentstaging: speakup: speakup_soft.c: style fixes (diff)
downloadlinux-dev-0d42cfe4c19a8e287d77b5bc1b33bc89c17caa4e.tar.xz
linux-dev-0d42cfe4c19a8e287d77b5bc1b33bc89c17caa4e.zip
staging: speakup: speakup_spkout.c: style fixes
* Clean this file based on reports from checkpatch.pl. Signed-off-by: Christopher Brannon <chris@the-brannons.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/speakup/speakup_spkout.c')
-rw-r--r--drivers/staging/speakup/speakup_spkout.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/staging/speakup/speakup_spkout.c b/drivers/staging/speakup/speakup_spkout.c
index 32fd8d761525..9a3a80d9701e 100644
--- a/drivers/staging/speakup/speakup_spkout.c
+++ b/drivers/staging/speakup/speakup_spkout.c
@@ -33,14 +33,14 @@
static void synth_flush(struct spk_synth *synth);
static struct var_t vars[] = {
- { CAPS_START, .u.s = {"\x05P+" }},
- { CAPS_STOP, .u.s = {"\x05P-" }},
- { RATE, .u.n = {"\x05R%d", 7, 0, 9, 0, 0, NULL }},
- { PITCH, .u.n = {"\x05P%d", 3, 0, 9, 0, 0, NULL }},
- { VOL, .u.n = {"\x05V%d", 9, 0, 9, 0, 0, NULL }},
- { TONE, .u.n = {"\x05T%c", 8, 0, 25, 65, 0, NULL }},
- { PUNCT, .u.n = {"\x05M%c", 0, 0, 3, 0, 0, "nsma" }},
- { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL }},
+ { CAPS_START, .u.s = {"\x05P+" } },
+ { CAPS_STOP, .u.s = {"\x05P-" } },
+ { RATE, .u.n = {"\x05R%d", 7, 0, 9, 0, 0, NULL } },
+ { PITCH, .u.n = {"\x05P%d", 3, 0, 9, 0, 0, NULL } },
+ { VOL, .u.n = {"\x05V%d", 9, 0, 9, 0, 0, NULL } },
+ { TONE, .u.n = {"\x05T%c", 8, 0, 25, 65, 0, NULL } },
+ { PUNCT, .u.n = {"\x05M%c", 0, 0, 3, 0, 0, "nsma" } },
+ { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
V_LAST_VAR
};