diff options
author | Paul Brook <paul@codesourcery.com> | 2009-05-14 22:35:08 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-05-14 22:35:08 +0100 |
commit | 0e058a8a6aab56565677dc3a7f994b0c8f191a48 (patch) | |
tree | b567e8f97339d6a9fa30ab89775a022bb6f209ff /hw/pc.c | |
parent | 2d72c5727f8343a39862b8fca3b53a2bce26a7ca (diff) | |
download | qemu-0e058a8a6aab56565677dc3a7f994b0c8f191a48.tar.gz qemu-0e058a8a6aab56565677dc3a7f994b0c8f191a48.tar.bz2 qemu-0e058a8a6aab56565677dc3a7f994b0c8f191a48.zip |
Virtio-console conversion
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/pc.c')
-rw-r--r-- | hw/pc.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -33,7 +33,6 @@ #include "boards.h" #include "monitor.h" #include "fw_cfg.h" -#include "virtio-console.h" #include "hpet_emul.h" #include "watchdog.h" #include "smbios.h" @@ -1147,8 +1146,9 @@ static void pc_init1(ram_addr_t ram_size, /* Add virtio console devices */ if (pci_enabled) { for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) { - if (virtcon_hds[i]) - virtio_console_init(pci_bus, virtcon_hds[i]); + if (virtcon_hds[i]) { + pci_create_simple(pci_bus, -1, "virtio-console"); + } } } } |