diff options
Diffstat (limited to 'drivers/tty/moxa.c')
| -rw-r--r-- | drivers/tty/moxa.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/moxa.c b/drivers/tty/moxa.c index f42492db31c..adeac255e52 100644 --- a/drivers/tty/moxa.c +++ b/drivers/tty/moxa.c @@ -1405,7 +1405,7 @@ static int moxa_poll_port(struct moxa_port *p, unsigned int handle,  		if (inited && !test_bit(TTY_THROTTLED, &tty->flags) &&  				MoxaPortRxQueue(p) > 0) { /* RX */  			MoxaPortReadData(p); -			tty_schedule_flip(tty); +			tty_schedule_flip(&p->port);  		}  	} else {  		clear_bit(EMPTYWAIT, &p->statusflags); @@ -1430,7 +1430,7 @@ static int moxa_poll_port(struct moxa_port *p, unsigned int handle,  	if (tty && (intr & IntrBreak) && !I_IGNBRK(tty)) { /* BREAK */  		tty_insert_flip_char(&p->port, 0, TTY_BREAK); -		tty_schedule_flip(tty); +		tty_schedule_flip(&p->port);  	}  	if (intr & IntrLine)  |