diff options
Diffstat (limited to 'drivers/char/tty_io.c')
-rw-r--r-- | drivers/char/tty_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index eda27899372c..047a17339f83 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
@@ -3349,7 +3349,7 @@ static int send_break(struct tty_struct *tty, unsigned int duration) | |||
3349 | msleep_interruptible(duration); | 3349 | msleep_interruptible(duration); |
3350 | tty->ops->break_ctl(tty, 0); | 3350 | tty->ops->break_ctl(tty, 0); |
3351 | tty_write_unlock(tty); | 3351 | tty_write_unlock(tty); |
3352 | if (!signal_pending(current)) | 3352 | if (signal_pending(current)) |
3353 | return -EINTR; | 3353 | return -EINTR; |
3354 | return 0; | 3354 | return 0; |
3355 | } | 3355 | } |