Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1f101456 authored by Bo YU's avatar Bo YU Committed by Greg Kroah-Hartman
Browse files

staging: speakup: in serialio.c no over 80 chars long



Fixed the checkpatch.pl warning:

WARNING: line over 80 characters

Signed-off-by: default avatarBo YU <tsu.yubo@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 79de2d0e
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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;