aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/speakup/serialio.c
diff options
context:
space:
mode:
authorBo YU <tsu.yubo@gmail.com>2017-06-05 23:44:26 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-06-06 16:17:30 +0200
commit1f101456460cce9be7cdad5798a0ecdd671986c8 (patch)
tree8f6ffd0580f0364a4333eff028334690e9495946 /drivers/staging/speakup/serialio.c
parentstaging: speakup: add a space around '|' (diff)
downloadlinux-dev-1f101456460cce9be7cdad5798a0ecdd671986c8.tar.xz
linux-dev-1f101456460cce9be7cdad5798a0ecdd671986c8.zip
staging: speakup: in serialio.c no over 80 chars long
Fixed the checkpatch.pl warning: WARNING: line over 80 characters Signed-off-by: Bo YU <tsu.yubo@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/speakup/serialio.c')
-rw-r--r--drivers/staging/speakup/serialio.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/staging/speakup/serialio.c b/drivers/staging/speakup/serialio.c
index f38eb66943bf..00b25d3591d2 100644
--- a/drivers/staging/speakup/serialio.c
+++ b/drivers/staging/speakup/serialio.c
@@ -228,7 +228,8 @@ int spk_wait_for_xmitr(struct spk_synth *in_synth)
}
while (spk_serial_tx_busy()) {
if (--tmout == 0) {
- pr_warn("%s: timed out (tx busy)\n", in_synth->long_name);
+ pr_warn("%s: timed out (tx busy)\n",
+ in_synth->long_name);
timeouts++;
return 0;
}
@@ -285,7 +286,8 @@ static int spk_serial_out(struct spk_synth *in_synth, const char ch)
return 0;
}
-const char *spk_serial_synth_immediate(struct spk_synth *synth, const char *buff)
+const char *spk_serial_synth_immediate(struct spk_synth *synth,
+ const char *buff)
{
u_char ch;