提交 4c2ef53d 编写于 作者: J Jiri Slaby 提交者: Greg Kroah-Hartman

TTY: vt, remove con_schedule_flip

This is identical to tty_schedule_flip. So let us use that instead.
Signed-off-by: NJiri Slaby <jslaby@suse.cz>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 d03702a2
...@@ -310,7 +310,7 @@ static void put_queue(struct vc_data *vc, int ch) ...@@ -310,7 +310,7 @@ static void put_queue(struct vc_data *vc, int ch)
if (tty) { if (tty) {
tty_insert_flip_char(tty, ch, 0); tty_insert_flip_char(tty, ch, 0);
con_schedule_flip(tty); tty_schedule_flip(tty);
} }
} }
...@@ -325,7 +325,7 @@ static void puts_queue(struct vc_data *vc, char *cp) ...@@ -325,7 +325,7 @@ static void puts_queue(struct vc_data *vc, char *cp)
tty_insert_flip_char(tty, *cp, 0); tty_insert_flip_char(tty, *cp, 0);
cp++; cp++;
} }
con_schedule_flip(tty); tty_schedule_flip(tty);
} }
static void applkey(struct vc_data *vc, int key, char mode) static void applkey(struct vc_data *vc, int key, char mode)
...@@ -586,7 +586,7 @@ static void fn_send_intr(struct vc_data *vc) ...@@ -586,7 +586,7 @@ static void fn_send_intr(struct vc_data *vc)
if (!tty) if (!tty)
return; return;
tty_insert_flip_char(tty, 0, TTY_BREAK); tty_insert_flip_char(tty, 0, TTY_BREAK);
con_schedule_flip(tty); tty_schedule_flip(tty);
} }
static void fn_scroll_forw(struct vc_data *vc) static void fn_scroll_forw(struct vc_data *vc)
......
...@@ -1380,7 +1380,7 @@ static void respond_string(const char *p, struct tty_struct *tty) ...@@ -1380,7 +1380,7 @@ static void respond_string(const char *p, struct tty_struct *tty)
tty_insert_flip_char(tty, *p, 0); tty_insert_flip_char(tty, *p, 0);
p++; p++;
} }
con_schedule_flip(tty); tty_schedule_flip(tty);
} }
static void cursor_report(struct vc_data *vc, struct tty_struct *tty) static void cursor_report(struct vc_data *vc, struct tty_struct *tty)
......
...@@ -145,16 +145,4 @@ void compute_shiftstate(void); ...@@ -145,16 +145,4 @@ void compute_shiftstate(void);
extern unsigned int keymap_count; extern unsigned int keymap_count;
/* console.c */
static inline void con_schedule_flip(struct tty_struct *t)
{
unsigned long flags;
spin_lock_irqsave(&t->buf.lock, flags);
if (t->buf.tail != NULL)
t->buf.tail->commit = t->buf.tail->used;
spin_unlock_irqrestore(&t->buf.lock, flags);
schedule_work(&t->buf.work);
}
#endif #endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册