kernel/drivers/s390/char/keyboard.h
.. .. @@ -56,7 +56,7 @@ 56 56 kbd_put_queue(struct tty_port *port, int ch) 57 57 { 58 58 tty_insert_flip_char(port, ch, 0); 59 - tty_schedule_flip(port);59 + tty_flip_buffer_push(port);60 60 } 61 61 62 62 static inline void .. .. @@ -64,5 +64,5 @@ 64 64 { 65 65 while (*cp) 66 66 tty_insert_flip_char(port, *cp++, 0); 67 - tty_schedule_flip(port);67 + tty_flip_buffer_push(port);68 68 }