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>
This commit is contained in:
parent
e1d3944f41
commit
06b51f4bd5
1 changed files with 2 additions and 2 deletions
|
@ -1318,8 +1318,8 @@ static int fwtty_break_ctl(struct tty_struct *tty, int state)
|
||||||
if (state == -1) {
|
if (state == -1) {
|
||||||
set_bit(STOP_TX, &port->flags);
|
set_bit(STOP_TX, &port->flags);
|
||||||
ret = wait_event_interruptible_timeout(port->wait_tx,
|
ret = wait_event_interruptible_timeout(port->wait_tx,
|
||||||
!test_bit(IN_TX, &port->flags),
|
!test_bit(IN_TX, &port->flags),
|
||||||
10);
|
10);
|
||||||
if (ret == 0 || ret == -ERESTARTSYS) {
|
if (ret == 0 || ret == -ERESTARTSYS) {
|
||||||
clear_bit(STOP_TX, &port->flags);
|
clear_bit(STOP_TX, &port->flags);
|
||||||
fwtty_restart_tx(port);
|
fwtty_restart_tx(port);
|
||||||
|
|
Loading…
Add table
Reference in a new issue