TTY: switch tty_flip_buffer_push
[firefly-linux-kernel-4.4.55.git] / drivers / usb / serial / ssu100.c
index 4543ea35022939976886dc576b7e6c1f2d37584c..58bc7e793524180a5dea4c602c479ede32d7aec6 100644 (file)
@@ -582,8 +582,7 @@ static void ssu100_update_lsr(struct usb_serial_port *port, u8 lsr,
 
 }
 
-static int ssu100_process_packet(struct urb *urb,
-                                struct tty_struct *tty)
+static void ssu100_process_read_urb(struct urb *urb)
 {
        struct usb_serial_port *port = urb->context;
        char *packet = (char *)urb->transfer_buffer;
@@ -598,7 +597,8 @@ static int ssu100_process_packet(struct urb *urb,
                if (packet[2] == 0x00) {
                        ssu100_update_lsr(port, packet[3], &flag);
                        if (flag == TTY_OVERRUN)
-                               tty_insert_flip_char(tty, 0, TTY_OVERRUN);
+                               tty_insert_flip_char(&port->port, 0,
+                                               TTY_OVERRUN);
                }
                if (packet[2] == 0x01)
                        ssu100_update_msr(port, packet[3]);
@@ -609,34 +609,17 @@ static int ssu100_process_packet(struct urb *urb,
                ch = packet;
 
        if (!len)
-               return 0;       /* status only */
+               return; /* status only */
 
        if (port->port.console && port->sysrq) {
                for (i = 0; i < len; i++, ch++) {
                        if (!usb_serial_handle_sysrq_char(port, *ch))
-                               tty_insert_flip_char(tty, *ch, flag);
+                               tty_insert_flip_char(&port->port, *ch, flag);
                }
        } else
-               tty_insert_flip_string_fixed_flag(tty, ch, flag, len);
-
-       return len;
-}
-
-static void ssu100_process_read_urb(struct urb *urb)
-{
-       struct usb_serial_port *port = urb->context;
-       struct tty_struct *tty;
-       int count;
-
-       tty = tty_port_tty_get(&port->port);
-       if (!tty)
-               return;
-
-       count = ssu100_process_packet(urb, tty);
+               tty_insert_flip_string_fixed_flag(&port->port, ch, flag, len);
 
-       if (count)
-               tty_flip_buffer_push(tty);
-       tty_kref_put(tty);
+       tty_flip_buffer_push(&port->port);
 }
 
 static struct usb_serial_driver ssu100_device = {