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 | 07e3af9ac31008a1d7eaaf44d62a13545f01c579 (patch) | |
tree | 743195c13b89452175bcd145c378b613a8330d8a /hw/ppc440_bamboo.c | |
parent | b4496b13bb51884681656c3470ba778c7e888c2b (diff) |
Virtio-blk qdev conversion
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/ppc440_bamboo.c')
-rw-r--r-- | hw/ppc440_bamboo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/ppc440_bamboo.c b/hw/ppc440_bamboo.c index e396ac3204..a58f6ea98b 100644 --- a/hw/ppc440_bamboo.c +++ b/hw/ppc440_bamboo.c @@ -16,7 +16,6 @@ #include "net.h" #include "hw.h" #include "pci.h" -#include "virtio-blk.h" #include "virtio-console.h" #include "boards.h" #include "sysemu.h" @@ -113,7 +112,7 @@ static void bamboo_init(ram_addr_t ram_size, /* Add virtio block devices. */ while ((i = drive_get_index(IF_VIRTIO, 0, unit_id)) != -1) { - virtio_blk_init(pcibus, drives_table[i].bdrv); + pci_create_simple(pcibus, -1, "virtio-blk"); unit_id++; } |