aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/speakup/speakup_keypc.c
diff options
context:
space:
mode:
authorSantha Meena Ramamoorthy <santhameena13@gmail.com>2018-03-05 09:34:13 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-03-06 04:01:10 -0800
commitaccb9343f58c6750c328645ca4b87fdf0fef3623 (patch)
treec731b6ae6777118d66ac8e6c264af0a4920df3d8 /drivers/staging/speakup/speakup_keypc.c
parentstaging: fsl-mc: Cleanup dpbp and dpcon API (diff)
downloadlinux-dev-accb9343f58c6750c328645ca4b87fdf0fef3623.tar.xz
linux-dev-accb9343f58c6750c328645ca4b87fdf0fef3623.zip
staging: speakup: match alignment with open parenthesis
Match alignment with the open parenthesis to conform to the Linux kernel coding style. Issue found using checkpatch. Signed-off-by: Santha Meena Ramamoorthy <santhameena13@gmail.com> Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/speakup/speakup_keypc.c')
-rw-r--r--drivers/staging/speakup/speakup_keypc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/speakup/speakup_keypc.c b/drivers/staging/speakup/speakup_keypc.c
index de76183932e1..3901734982a4 100644
--- a/drivers/staging/speakup/speakup_keypc.c
+++ b/drivers/staging/speakup/speakup_keypc.c
@@ -260,7 +260,7 @@ static int synth_probe(struct spk_synth *synth)
if (port_forced) {
synth_port = port_forced;
pr_info("probe forced to %x by kernel command line\n",
- synth_port);
+ synth_port);
if (synth_request_region(synth_port-1, SYNTH_IO_EXTENT)) {
pr_warn("sorry, port already reserved\n");
return -EBUSY;
@@ -269,7 +269,7 @@ static int synth_probe(struct spk_synth *synth)
} else {
for (i = 0; synth_portlist[i]; i++) {
if (synth_request_region(synth_portlist[i],
- SYNTH_IO_EXTENT)) {
+ SYNTH_IO_EXTENT)) {
pr_warn
("request_region: failed with 0x%x, %d\n",
synth_portlist[i], SYNTH_IO_EXTENT);