diff options
author | Hans de Goede <hdegoede@redhat.com> | 2013-03-26 11:07:54 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-03-27 10:26:49 -0500 |
commit | fee204fd46016c168ca4d404d04e2c06b8b34770 (patch) | |
tree | 682066a6ab2859ec6d665fae9b010568119129da /ui | |
parent | 16665b943b23e953220df257e7e04e669aa384d5 (diff) |
qemu-char: Rename qemu_chr_generic_open to qemu_chr_be_generic_open
To better reflect that it is for handling a backend being opened.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Message-id: 1364292483-16564-3-git-send-email-hdegoede@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/console.c | 2 | ||||
-rw-r--r-- | ui/gtk.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/console.c b/ui/console.c index eb7a2bc1bf..e84ba8b40a 100644 --- a/ui/console.c +++ b/ui/console.c @@ -1600,7 +1600,7 @@ static void text_console_do_init(CharDriverState *chr, DisplayState *ds) s->t_attrib = s->t_attrib_default; } - qemu_chr_generic_open(chr); + qemu_chr_be_generic_open(chr); if (chr->init) chr->init(chr); } @@ -1163,7 +1163,7 @@ static GSList *gd_vc_init(GtkDisplayState *s, VirtualConsole *vc, int index, GSL gtk_menu_shell_append(GTK_MENU_SHELL(s->view_menu), vc->menu_item); - qemu_chr_generic_open(vc->chr); + qemu_chr_be_generic_open(vc->chr); if (vc->chr->init) { vc->chr->init(vc->chr); } |