From 8e69a8110686572a4b88d006faa8c3c759c4c261 Mon Sep 17 00:00:00 2001 From: Domagoj Trsan Date: Tue, 9 Sep 2014 20:04:34 +0200 Subject: staging: speakup: fix missing blank lines after declarations Signed-off-by: Domagoj Trsan Signed-off-by: Greg Kroah-Hartman --- drivers/staging/speakup/speakup_acntpc.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'drivers/staging/speakup/speakup_acntpc.c') diff --git a/drivers/staging/speakup/speakup_acntpc.c b/drivers/staging/speakup/speakup_acntpc.c index 31f952b9049b..f0bfd9e99191 100644 --- a/drivers/staging/speakup/speakup_acntpc.c +++ b/drivers/staging/speakup/speakup_acntpc.c @@ -152,8 +152,10 @@ static inline bool synth_full(void) static const char *synth_immediate(struct spk_synth *synth, const char *buf) { u_char ch; + while ((ch = *buf)) { int timeout = SPK_XMITR_TIMEOUT; + if (ch == '\n') ch = PROCSPEECH; if (synth_full()) @@ -257,6 +259,7 @@ static int synth_probe(struct spk_synth *synth) { unsigned int port_val = 0; int i = 0; + pr_info("Probing for %s.\n", synth->long_name); if (port_forced) { speakup_info.port_tts = port_forced; -- cgit v1.2.3-59-g8ed1b