tty: Fix inverted logic in send_break
Not sure how this came to get inverted but it appears to have been my mess up. Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
@@ -3322,7 +3322,7 @@ static int send_break(struct tty_struct *tty, unsigned int duration)
|
|||||||
msleep_interruptible(duration);
|
msleep_interruptible(duration);
|
||||||
tty->ops->break_ctl(tty, 0);
|
tty->ops->break_ctl(tty, 0);
|
||||||
tty_write_unlock(tty);
|
tty_write_unlock(tty);
|
||||||
if (!signal_pending(current))
|
if (signal_pending(current))
|
||||||
return -EINTR;
|
return -EINTR;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user