tty: the rest, stop using tty_schedule_flip()
[platform/kernel/linux-rpi.git] / drivers / s390 / char / keyboard.h
index c467589..c06d399 100644 (file)
@@ -56,7 +56,7 @@ static inline void
 kbd_put_queue(struct tty_port *port, int ch)
 {
        tty_insert_flip_char(port, ch, 0);
-       tty_schedule_flip(port);
+       tty_flip_buffer_push(port);
 }
 
 static inline void
@@ -64,5 +64,5 @@ kbd_puts_queue(struct tty_port *port, char *cp)
 {
        while (*cp)
                tty_insert_flip_char(port, *cp++, 0);
-       tty_schedule_flip(port);
+       tty_flip_buffer_push(port);
 }