summaryrefslogtreecommitdiffstats
path: root/drivers/staging/fwserial
diff options
context:
space:
mode:
authorNikolay Kyx <knv418@gmail.com>2021-02-19 18:49:17 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-03-10 09:25:26 +0100
commit06b51f4bd5d24494f73fca13cd1ee0ebeadb4ce0 (patch)
tree2353a99bf6b7dd52673920dd2930c2a1fb0fdc0d /drivers/staging/fwserial
parente1d3944f41b5b8d53b4c9ca7594a7c137c8f5bca (diff)
downloadlinux-06b51f4bd5d24494f73fca13cd1ee0ebeadb4ce0.tar.bz2
staging: fwserial: match alignment with open parenthesis
This patch fixes the following checkpatch.pl check: CHECK: Alignment should match open parenthesis in file fwserial.c Signed-off-by: Nikolay Kyx <knv418@gmail.com> Link: https://lore.kernel.org/r/20210219154917.23388-1-knv418@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/fwserial')
-rw-r--r--drivers/staging/fwserial/fwserial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/fwserial/fwserial.c b/drivers/staging/fwserial/fwserial.c
index c368082aae1a..137e97c9406c 100644
--- a/drivers/staging/fwserial/fwserial.c
+++ b/drivers/staging/fwserial/fwserial.c
@@ -1318,8 +1318,8 @@ static int fwtty_break_ctl(struct tty_struct *tty, int state)
if (state == -1) {
set_bit(STOP_TX, &port->flags);
ret = wait_event_interruptible_timeout(port->wait_tx,
- !test_bit(IN_TX, &port->flags),
- 10);
+ !test_bit(IN_TX, &port->flags),
+ 10);
if (ret == 0 || ret == -ERESTARTSYS) {
clear_bit(STOP_TX, &port->flags);
fwtty_restart_tx(port);