aboutsummaryrefslogtreecommitdiffstats
path: root/qemu-char-android.c
diff options
context:
space:
mode:
authorDavid Turner <digit@android.com>2010-09-10 16:11:22 +0200
committerDavid 'Digit' Turner <digit@android.com>2010-09-13 00:30:35 -0700
commitf52506f4827dfa6da47730c4756a984b05db6dda (patch)
treeb44a329946de9bed358d23c12dbe905999bf14c9 /qemu-char-android.c
parent025c32ffcd9f682cd761a836fe8798738d1648f2 (diff)
downloadexternal_qemu-f52506f4827dfa6da47730c4756a984b05db6dda.zip
external_qemu-f52506f4827dfa6da47730c4756a984b05db6dda.tar.gz
external_qemu-f52506f4827dfa6da47730c4756a984b05db6dda.tar.bz2
upstream: console changes.
Diffstat (limited to 'qemu-char-android.c')
-rw-r--r--qemu-char-android.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu-char-android.c b/qemu-char-android.c
index a3cfe46..7753bf9 100644
--- a/qemu-char-android.c
+++ b/qemu-char-android.c
@@ -2314,10 +2314,10 @@ CharDriverState *qemu_chr_open(const char *label, const char *filename, void (*i
CharDriverState *chr;
if (!strcmp(filename, "vc")) {
- chr = text_console_init(0);
+ chr = text_console_init_compat(label, NULL);
} else
if (strstart(filename, "vc:", &p)) {
- chr = text_console_init(p);
+ chr = text_console_init_compat(label, p);
} else
if (!strcmp(filename, "null")) {
chr = qemu_chr_open_null();