diff options
author | Christopher Brannon <cmbrannon79@gmail.com> | 2010-10-14 19:23:49 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-15 12:22:36 -0700 |
commit | d1c07c416c53c37ea4800513a6e7bbb13ef9c1e2 (patch) | |
tree | 061e237882c3edd94eae9ea1f97c1840894ea98d /drivers/staging/speakup | |
parent | f4931441aeb02bc53a1cfe216e7489b3f960f76f (diff) | |
download | blackbird-obmc-linux-d1c07c416c53c37ea4800513a6e7bbb13ef9c1e2.tar.gz blackbird-obmc-linux-d1c07c416c53c37ea4800513a6e7bbb13ef9c1e2.zip |
staging: speakup: speakup_audptr.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')
-rw-r--r-- | drivers/staging/speakup/speakup_audptr.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/staging/speakup/speakup_audptr.c b/drivers/staging/speakup/speakup_audptr.c index a194b6f2b5aa..94e509992c8b 100644 --- a/drivers/staging/speakup/speakup_audptr.c +++ b/drivers/staging/speakup/speakup_audptr.c @@ -34,14 +34,14 @@ static int synth_probe(struct spk_synth *synth); static void synth_flush(struct spk_synth *synth); static struct var_t vars[] = { - { CAPS_START, .u.s = {"\x05[f99]" }}, - { CAPS_STOP, .u.s = {"\x05[f80]" }}, - { RATE, .u.n = {"\x05[r%d]", 10, 0, 20, 100, -10, NULL }}, - { PITCH, .u.n = {"\x05[f%d]", 80, 39, 4500, 0, 0, NULL }}, - { VOL, .u.n = {"\x05[g%d]", 21, 0, 40, 0, 0, NULL }}, - { TONE, .u.n = {"\x05[s%d]", 9, 0, 63, 0, 0, 0 }}, - { PUNCT, .u.n = {"\x05[A%c]", 0, 0, 3, 0, 0, "nmsa" }}, - { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL }}, + { CAPS_START, .u.s = {"\x05[f99]" } }, + { CAPS_STOP, .u.s = {"\x05[f80]" } }, + { RATE, .u.n = {"\x05[r%d]", 10, 0, 20, 100, -10, NULL } }, + { PITCH, .u.n = {"\x05[f%d]", 80, 39, 4500, 0, 0, NULL } }, + { VOL, .u.n = {"\x05[g%d]", 21, 0, 40, 0, 0, NULL } }, + { TONE, .u.n = {"\x05[s%d]", 9, 0, 63, 0, 0, 0 } }, + { PUNCT, .u.n = {"\x05[A%c]", 0, 0, 3, 0, 0, "nmsa" } }, + { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } }, V_LAST_VAR }; |