tty: Fix up char drivers request_room usage
We can't change them all but quite a few misuse it. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
638b9648ab
commit
4165fe4ef7
@ -1411,8 +1411,7 @@ static int receive_chars(struct uart_port *the_port)
|
||||
read_count = do_read(the_port, ch, MAX_CHARS);
|
||||
if (read_count > 0) {
|
||||
flip = 1;
|
||||
read_room = tty_buffer_request_room(tty, read_count);
|
||||
tty_insert_flip_string(tty, ch, read_room);
|
||||
read_room = tty_insert_flip_string(tty, ch, read_count);
|
||||
the_port->icount.rx += read_count;
|
||||
}
|
||||
spin_unlock_irqrestore(&the_port->lock, pflags);
|
||||
|
Reference in New Issue
Block a user