diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2013-03-05 23:21:32 +0530 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-03-08 13:57:16 -0600 |
commit | 01f45d986fb0b7c2d4f0466efe3cde9708f325be (patch) | |
tree | 0f5509424107791776e9320fe26cb634550f4cc0 | |
parent | 5ab8211b9e1215ed136164c6d9622f2c928f7a8d (diff) |
qemu-char: move text console init to console.c
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Message-id: 17cefde0a8d7807294bab95e93c3328a20d3f2ed.1362505276.git.amit.shah@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | qemu-char.c | 1 | ||||
-rw-r--r-- | ui/console.c | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/qemu-char.c b/qemu-char.c index cf02cabba2..b82d6433d2 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -3663,7 +3663,6 @@ static void register_types(void) register_char_driver("null", qemu_chr_open_null); register_char_driver("socket", qemu_chr_open_socket); register_char_driver("udp", qemu_chr_open_udp); - register_char_driver("vc", vc_init); register_char_driver("memory", qemu_chr_open_ringbuf); #ifdef _WIN32 register_char_driver("file", qemu_chr_open_win_file_out); diff --git a/ui/console.c b/ui/console.c index 0d95f32123..83a6fa3969 100644 --- a/ui/console.c +++ b/ui/console.c @@ -1739,3 +1739,10 @@ PixelFormat qemu_default_pixelformat(int bpp) } return pf; } + +static void register_types(void) +{ + register_char_driver("vc", text_console_init); +} + +type_init(register_types); |