| Submitter | Peter Crosthwaite |
|---|---|
| Date | Feb. 25, 2013, 8:50 a.m. |
| Message ID | <0819cb4748f0cc8550f48ad65ddab13d4b72fe59.1361782087.git.peter.crosthwaite@xilinx.com> |
| Download | mbox | patch |
| Permalink | /patch/222881/ |
| State | New |
| Headers | show |
Comments
Am 25.02.2013 09:50, schrieb Peter Crosthwaite: > Just attach devices straight to the root machine node, rather than the > "unattached node" > > Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> > --- > Suggested (indirectly) by Andreas if he wants to put his Suggested-by to it. I don't insist. :) Reviewed-by: Andreas Färber <afaerber@suse.de> Andreas
Patch
diff --git a/hw/petalogix_ml605_mmu.c b/hw/petalogix_ml605_mmu.c index 82d7183..98e647d 100644 --- a/hw/petalogix_ml605_mmu.c +++ b/hw/petalogix_ml605_mmu.c @@ -134,8 +134,8 @@ petalogix_ml605_init(QEMUMachineInitArgs *args) dma = qdev_create(NULL, "xlnx.axi-dma"); /* FIXME: attach to the sysbus instead */ - object_property_add_child(container_get(qdev_get_machine(), "/unattached"), - "xilinx-dma", OBJECT(dma), NULL); + object_property_add_child(qdev_get_machine(), "xilinx-dma", OBJECT(dma), + NULL); xilinx_axiethernet_init(eth0, &nd_table[0], STREAM_SLAVE(dma), 0x82780000, irq[3], 0x1000, 0x1000);
Just attach devices straight to the root machine node, rather than the "unattached node" Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com> --- Suggested (indirectly) by Andreas if he wants to put his Suggested-by to it. hw/petalogix_ml605_mmu.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)