forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-12-09 95099d4622f8cb224d94e314c7a8e0df60b13f87
kernel/drivers/s390/char/keyboard.h
....@@ -56,7 +56,7 @@
5656 kbd_put_queue(struct tty_port *port, int ch)
5757 {
5858 tty_insert_flip_char(port, ch, 0);
59
- tty_schedule_flip(port);
59
+ tty_flip_buffer_push(port);
6060 }
6161
6262 static inline void
....@@ -64,5 +64,5 @@
6464 {
6565 while (*cp)
6666 tty_insert_flip_char(port, *cp++, 0);
67
- tty_schedule_flip(port);
67
+ tty_flip_buffer_push(port);
6868 }