diff options
author | Shraddha Barke <shraddha.6596@gmail.com> | 2015-09-05 18:58:27 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-09-12 18:24:53 -0700 |
commit | ca0b6fe173a11219312bb3607d4d5a0faac1feb4 (patch) | |
tree | 79531c27015d15cefc16f35aa59e00e1b9ee34cd /drivers/staging/speakup | |
parent | 7273773c2cecb647373c4180b159ba1669313681 (diff) | |
download | talos-op-linux-ca0b6fe173a11219312bb3607d4d5a0faac1feb4.tar.gz talos-op-linux-ca0b6fe173a11219312bb3607d4d5a0faac1feb4.zip |
Staging: speakup: Remove braces for single statement blocks
The linux kernel coding style discourages use of braces for single
statement blocks. This patch removes the unnecessary braces.
The warning was detected using checkpatch.pl. Coccinelle was used to
make the change.
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/speakup')
-rw-r--r-- | drivers/staging/speakup/speakup_dectlk.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/speakup/speakup_dectlk.c b/drivers/staging/speakup/speakup_dectlk.c index b5a23d42f4d5..09063b82326f 100644 --- a/drivers/staging/speakup/speakup_dectlk.c +++ b/drivers/staging/speakup/speakup_dectlk.c @@ -291,10 +291,9 @@ static void do_catch_up(struct spk_synth *synth) static void synth_flush(struct spk_synth *synth) { - if (in_escape) { + if (in_escape) /* if in command output ']' so we don't get an error */ spk_serial_out(']'); - } in_escape = 0; is_flushing = 1; spk_serial_out(SYNTH_CLEAR); |