Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: speakup: Match alignment with open parenthesis.

Fix checkpatch issues: "CHECK: Alignment should match open parenthesis".

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Arushi Singhal and committed by
Greg Kroah-Hartman
65bf4ea1 3b4ad1ec

+6 -6
+1 -1
drivers/staging/speakup/main.c
··· 1154 1154 if (last_type & CH_RPT) { 1155 1155 synth_printf(" "); 1156 1156 synth_printf(spk_msg_get(MSG_REPEAT_DESC2), 1157 - ++rep_count); 1157 + ++rep_count); 1158 1158 synth_printf(" "); 1159 1159 } 1160 1160 rep_count = 0;
+1 -1
drivers/staging/speakup/selection.c
··· 75 75 speakup_clear_selection(); 76 76 spk_sel_cons = vc_cons[fg_console].d; 77 77 dev_warn(tty->dev, 78 - "Selection: mark console not the same as cut\n"); 78 + "Selection: mark console not the same as cut\n"); 79 79 return -EINVAL; 80 80 } 81 81
+1 -1
drivers/staging/speakup/serialio.c
··· 125 125 pr_err("Unable to request Speakup serial I R Q\n"); 126 126 /* Set MCR */ 127 127 outb(UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2, 128 - speakup_info.port_tts + UART_MCR); 128 + speakup_info.port_tts + UART_MCR); 129 129 /* Turn on Interrupts */ 130 130 outb(UART_IER_MSI|UART_IER_RLSI|UART_IER_RDI, 131 131 speakup_info.port_tts + UART_IER);
+3 -3
drivers/staging/speakup/speakup_acntpc.c
··· 261 261 if (port_forced) { 262 262 speakup_info.port_tts = port_forced; 263 263 pr_info("probe forced to %x by kernel command line\n", 264 - speakup_info.port_tts); 264 + speakup_info.port_tts); 265 265 if (synth_request_region(speakup_info.port_tts - 1, 266 - SYNTH_IO_EXTENT)) { 266 + SYNTH_IO_EXTENT)) { 267 267 pr_warn("sorry, port already reserved\n"); 268 268 return -EBUSY; 269 269 } ··· 272 272 } else { 273 273 for (i = 0; synth_portlist[i]; i++) { 274 274 if (synth_request_region(synth_portlist[i], 275 - SYNTH_IO_EXTENT)) { 275 + SYNTH_IO_EXTENT)) { 276 276 pr_warn 277 277 ("request_region: failed with 0x%x, %d\n", 278 278 synth_portlist[i], SYNTH_IO_EXTENT);