Skip to content

Commit

Permalink
staging: speakup: speakup_spkout.c: style fixes
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
Christopher Brannon authored and Greg Kroah-Hartman committed Oct 15, 2010
1 parent 13f1a04 commit 0d42cfe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions drivers/staging/speakup/speakup_spkout.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down

0 comments on commit 0d42cfe

Please sign in to comment.