diff options
Diffstat (limited to 'drivers/tty/serial/serial_core.c')
-rw-r--r-- | drivers/tty/serial/serial_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c index 623d6bd911d..733fe8e73f0 100644 --- a/drivers/tty/serial/serial_core.c +++ b/drivers/tty/serial/serial_core.c | |||
@@ -1099,7 +1099,7 @@ static int uart_get_icount(struct tty_struct *tty, | |||
1099 | * Called via sys_ioctl. We can use spin_lock_irq() here. | 1099 | * Called via sys_ioctl. We can use spin_lock_irq() here. |
1100 | */ | 1100 | */ |
1101 | static int | 1101 | static int |
1102 | uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd, | 1102 | uart_ioctl(struct tty_struct *tty, unsigned int cmd, |
1103 | unsigned long arg) | 1103 | unsigned long arg) |
1104 | { | 1104 | { |
1105 | struct uart_state *state = tty->driver_data; | 1105 | struct uart_state *state = tty->driver_data; |
@@ -1152,7 +1152,7 @@ uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd, | |||
1152 | 1152 | ||
1153 | mutex_lock(&port->mutex); | 1153 | mutex_lock(&port->mutex); |
1154 | 1154 | ||
1155 | if (tty_hung_up_p(filp)) { | 1155 | if (tty->flags & (1 << TTY_IO_ERROR)) { |
1156 | ret = -EIO; | 1156 | ret = -EIO; |
1157 | goto out_up; | 1157 | goto out_up; |
1158 | } | 1158 | } |