aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial/imx.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/tty/serial/imx.c')
-rw-r--r--drivers/tty/serial/imx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
index 1a2488495f69..f60c4028b6e1 100644
--- a/drivers/tty/serial/imx.c
+++ b/drivers/tty/serial/imx.c
@@ -517,6 +517,8 @@ static irqreturn_t imx_rxint(int irq, void *dev_id)
517 struct imx_port *sport = dev_id; 517 struct imx_port *sport = dev_id;
518 unsigned int rx, flg, ignored = 0; 518 unsigned int rx, flg, ignored = 0;
519 struct tty_struct *tty = sport->port.state->port.tty; 519 struct tty_struct *tty = sport->port.state->port.tty;
520 struct tty_port *port = &sport->port.state->port;
521 struct tty_struct *tty = port->tty;
520 unsigned long flags, temp; 522 unsigned long flags, temp;
521 523
522 spin_lock_irqsave(&sport->port.lock, flags); 524 spin_lock_irqsave(&sport->port.lock, flags);
@@ -569,7 +571,7 @@ static irqreturn_t imx_rxint(int irq, void *dev_id)
569#endif 571#endif
570 } 572 }
571 573
572 tty_insert_flip_char(tty, rx, flg); 574 tty_insert_flip_char(port, rx, flg);
573 } 575 }
574 576
575out: 577out: