diff options
author | Jiri Slaby <jslaby@suse.cz> | 2012-06-04 11:35:31 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-06-14 00:30:53 (GMT) |
commit | 4c2ef53d3bfb36659c47ba589f35bcab24f425c7 (patch) | |
tree | 04cc3b3e954958a16204d47277e47d88698443c8 /drivers/tty/vt/vt.c | |
parent | d03702a27df017d1807fd4809f03adaa8e37005f (diff) | |
download | linux-fsl-qoriq-4c2ef53d3bfb36659c47ba589f35bcab24f425c7.tar.xz |
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>
Diffstat (limited to 'drivers/tty/vt/vt.c')
-rw-r--r-- | drivers/tty/vt/vt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index 84cbf29..88a4914 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c @@ -1380,7 +1380,7 @@ static void respond_string(const char *p, struct tty_struct *tty) tty_insert_flip_char(tty, *p, 0); p++; } - con_schedule_flip(tty); + tty_schedule_flip(tty); } static void cursor_report(struct vc_data *vc, struct tty_struct *tty) |