Commit 4165fe4e authored by Alan Cox's avatar Alan Cox Committed by Greg Kroah-Hartman

tty: Fix up char drivers request_room usage

We can't change them all but quite a few misuse it.
Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 638b9648
...@@ -853,8 +853,6 @@ static int receive_data(enum port_type index, struct nozomi *dc) ...@@ -853,8 +853,6 @@ static int receive_data(enum port_type index, struct nozomi *dc)
goto put; goto put;
} }
tty_buffer_request_room(tty, size);
while (size > 0) { while (size > 0) {
read_mem32((u32 *) buf, addr + offset, RECEIVE_BUF_MAX); read_mem32((u32 *) buf, addr + offset, RECEIVE_BUF_MAX);
......
...@@ -658,8 +658,7 @@ static irqreturn_t cd2401_rx_interrupt(int irq, void *dev_id) ...@@ -658,8 +658,7 @@ static irqreturn_t cd2401_rx_interrupt(int irq, void *dev_id)
info->mon.char_max = char_count; info->mon.char_max = char_count;
info->mon.char_last = char_count; info->mon.char_last = char_count;
#endif #endif
len = tty_buffer_request_room(tty, char_count); while (char_count--) {
while (len--) {
data = base_addr[CyRDR]; data = base_addr[CyRDR];
tty_insert_flip_char(tty, data, TTY_NORMAL); tty_insert_flip_char(tty, data, TTY_NORMAL);
#ifdef CYCLOM_16Y_HACK #ifdef CYCLOM_16Y_HACK
......
...@@ -646,8 +646,6 @@ static void sx_receive(struct specialix_board *bp) ...@@ -646,8 +646,6 @@ static void sx_receive(struct specialix_board *bp)
dprintk(SX_DEBUG_RX, "port: %p: count: %d\n", port, count); dprintk(SX_DEBUG_RX, "port: %p: count: %d\n", port, count);
port->hits[count > 8 ? 9 : count]++; port->hits[count > 8 ? 9 : count]++;
tty_buffer_request_room(tty, count);
while (count--) while (count--)
tty_insert_flip_char(tty, sx_in(bp, CD186x_RDR), TTY_NORMAL); tty_insert_flip_char(tty, sx_in(bp, CD186x_RDR), TTY_NORMAL);
tty_flip_buffer_push(tty); tty_flip_buffer_push(tty);
......
...@@ -751,7 +751,6 @@ static void recv_interrupt(u16 port_int_reg, struct icom_port *icom_port) ...@@ -751,7 +751,6 @@ static void recv_interrupt(u16 port_int_reg, struct icom_port *icom_port)
trace(icom_port, "FID_STATUS", status); trace(icom_port, "FID_STATUS", status);
count = cpu_to_le16(icom_port->statStg->rcv[rcv_buff].leLength); count = cpu_to_le16(icom_port->statStg->rcv[rcv_buff].leLength);
count = tty_buffer_request_room(tty, count);
trace(icom_port, "RCV_COUNT", count); trace(icom_port, "RCV_COUNT", count);
trace(icom_port, "REAL_COUNT", count); trace(icom_port, "REAL_COUNT", count);
......
...@@ -1411,8 +1411,7 @@ static int receive_chars(struct uart_port *the_port) ...@@ -1411,8 +1411,7 @@ static int receive_chars(struct uart_port *the_port)
read_count = do_read(the_port, ch, MAX_CHARS); read_count = do_read(the_port, ch, MAX_CHARS);
if (read_count > 0) { if (read_count > 0) {
flip = 1; flip = 1;
read_room = tty_buffer_request_room(tty, read_count); read_room = tty_insert_flip_string(tty, ch, read_count);
tty_insert_flip_string(tty, ch, read_room);
the_port->icount.rx += read_count; the_port->icount.rx += read_count;
} }
spin_unlock_irqrestore(&the_port->lock, pflags); spin_unlock_irqrestore(&the_port->lock, pflags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment