forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
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 }