TTY: vt, remove con_schedule_flip

This is identical to tty_schedule_flip. So let us use that instead.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Jiri Slaby
2012-06-04 13:35:31 +02:00
committed by Greg Kroah-Hartman
parent d03702a27d
commit 4c2ef53d3b
3 changed files with 4 additions and 16 deletions

View File

@@ -145,16 +145,4 @@ void compute_shiftstate(void);
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