Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Christopher Brannon and committed by
Greg Kroah-Hartman
0d42cfe4 13f1a041

+8 -8
+8 -8
drivers/staging/speakup/speakup_spkout.c
··· 33 33 static void synth_flush(struct spk_synth *synth); 34 34 35 35 static struct var_t vars[] = { 36 - { CAPS_START, .u.s = {"\x05P+" }}, 37 - { CAPS_STOP, .u.s = {"\x05P-" }}, 38 - { RATE, .u.n = {"\x05R%d", 7, 0, 9, 0, 0, NULL }}, 39 - { PITCH, .u.n = {"\x05P%d", 3, 0, 9, 0, 0, NULL }}, 40 - { VOL, .u.n = {"\x05V%d", 9, 0, 9, 0, 0, NULL }}, 41 - { TONE, .u.n = {"\x05T%c", 8, 0, 25, 65, 0, NULL }}, 42 - { PUNCT, .u.n = {"\x05M%c", 0, 0, 3, 0, 0, "nsma" }}, 43 - { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL }}, 36 + { CAPS_START, .u.s = {"\x05P+" } }, 37 + { CAPS_STOP, .u.s = {"\x05P-" } }, 38 + { RATE, .u.n = {"\x05R%d", 7, 0, 9, 0, 0, NULL } }, 39 + { PITCH, .u.n = {"\x05P%d", 3, 0, 9, 0, 0, NULL } }, 40 + { VOL, .u.n = {"\x05V%d", 9, 0, 9, 0, 0, NULL } }, 41 + { TONE, .u.n = {"\x05T%c", 8, 0, 25, 65, 0, NULL } }, 42 + { PUNCT, .u.n = {"\x05M%c", 0, 0, 3, 0, 0, "nsma" } }, 43 + { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } }, 44 44 V_LAST_VAR 45 45 }; 46 46