mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 18:13:26 -04:00
USB: serial: keyspan: Fixed space near open parenthesis.
Changes to conform with checkpatch.sh script. - space near open
parenthesis '('. Removed 2 checkpatch.sh errors.
Signed-off-by: Ben Minerds <puzzleduck@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
40adac8143
commit
ddc04ae77f
@@ -557,7 +557,7 @@ static void usa28_instat_callback(struct urb *urb)
|
||||
p_priv->dcd_state = ((msg->dcd) ? 1 : 0);
|
||||
p_priv->ri_state = ((msg->ri) ? 1 : 0);
|
||||
|
||||
if( old_dcd_state != p_priv->dcd_state && old_dcd_state) {
|
||||
if (old_dcd_state != p_priv->dcd_state && old_dcd_state) {
|
||||
tty = tty_port_tty_get(&port->port);
|
||||
if (tty && !C_CLOCAL(tty))
|
||||
tty_hangup(tty);
|
||||
|
||||
Reference in New Issue
Block a user