]> Pileus Git - ~andy/linux/commitdiff
staging: speakup: serialio.c style fixes
authorWilliam Hubbs <w.d.hubbs@gmail.com>
Sat, 16 Oct 2010 03:13:36 +0000 (22:13 -0500)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 19 Oct 2010 17:06:05 +0000 (10:06 -0700)
fix issues reported by checkpatch.pl

Signed-off-by: William Hubbs <w.d.hubbs@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/speakup/serialio.c

index 65772ec3822dadd17c947941ef21514c4d7dc299..7f3d87bf592739821ca05e72b9beb4c52c254605 100644 (file)
@@ -41,7 +41,8 @@ struct serial_state *spk_serial_init(int index)
                __release_region(&ioport_resource, ser->port, 8);
                err = synth_request_region(ser->port, 8);
                if (err) {
-                       pr_warn("Unable to allocate port at %lx, errno %i", ser->port, err);
+                       pr_warn("Unable to allocate port at %lx, errno %i",
+                               ser->port, err);
                        return NULL;
                }
        }
@@ -134,7 +135,8 @@ int wait_for_xmitr(void)
 {
        int tmout = SPK_XMITR_TIMEOUT;
        if ((synth->alive) && (timeouts >= NUM_DISABLE_TIMEOUTS)) {
-               pr_warn("%s: too many timeouts, deactivating speakup\n", synth->long_name);
+               pr_warn("%s: too many timeouts, deactivating speakup\n",
+                       synth->long_name);
                synth->alive = 0;
                /* No synth any more, so nobody will restart TTYs, and we thus
                 * need to do it ourselves.  Now that there is no synth we can
@@ -155,7 +157,8 @@ int wait_for_xmitr(void)
        while (!((inb_p(speakup_info.port_tts + UART_MSR)) & UART_MSR_CTS)) {
                /* CTS */
                if (--tmout == 0) {
-                       /* pr_warn("%s: timed out (cts)\n", synth->long_name); */
+                       /* pr_warn("%s: timed out (cts)\n",
+                        * synth->long_name); */
                        timeouts++;
                        return 0;
                }