aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/speakup
diff options
context:
space:
mode:
authorChristopher Brannon <cmbrannon79@gmail.com>2010-10-14 20:23:50 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-10-15 15:22:36 -0400
commit64d1e5a0986e612307138db8db1dc2db9bf919f8 (patch)
tree2dcb013128df3124a8ecb0990c1dbbcbf635313b /drivers/staging/speakup
parentd1c07c416c53c37ea4800513a6e7bbb13ef9c1e2 (diff)
staging: speakup: speakup_bns.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_bns.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/staging/speakup/speakup_bns.c b/drivers/staging/speakup/speakup_bns.c
index e1b19f7de7c..43e5b54f344 100644
--- a/drivers/staging/speakup/speakup_bns.c
+++ b/drivers/staging/speakup/speakup_bns.c
@@ -30,13 +30,13 @@
30#define PROCSPEECH '\r' 30#define PROCSPEECH '\r'
31 31
32static struct var_t vars[] = { 32static struct var_t vars[] = {
33 { CAPS_START, .u.s = {"\x05\x31\x32P" }}, 33 { CAPS_START, .u.s = {"\x05\x31\x32P" } },
34 { CAPS_STOP, .u.s = {"\x05\x38P" }}, 34 { CAPS_STOP, .u.s = {"\x05\x38P" } },
35 { RATE, .u.n = {"\x05%dE", 8, 1, 16, 0, 0, NULL }}, 35 { RATE, .u.n = {"\x05%dE", 8, 1, 16, 0, 0, NULL } },
36 { PITCH, .u.n = {"\x05%dP", 8, 0, 16, 0, 0, NULL }}, 36 { PITCH, .u.n = {"\x05%dP", 8, 0, 16, 0, 0, NULL } },
37 { VOL, .u.n = {"\x05%dV", 8, 0, 16, 0, 0, NULL }}, 37 { VOL, .u.n = {"\x05%dV", 8, 0, 16, 0, 0, NULL } },
38 { TONE, .u.n = {"\x05%dT", 8, 0, 16, 0, 0, NULL }}, 38 { TONE, .u.n = {"\x05%dT", 8, 0, 16, 0, 0, NULL } },
39 { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL }}, 39 { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
40 V_LAST_VAR 40 V_LAST_VAR
41}; 41};
42 42