summaryrefslogtreecommitdiff
path: root/hw/sun4m.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2009-10-21 15:25:32 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-27 12:28:39 -0500
commit7622483395ef0e6c415af74bc9e7b0edf59cfe6c (patch)
treebdc497558b2c303a7fed739579a73e852b920d3e /hw/sun4m.c
parentfbdaa002594c5115c3ff60a7fd5d3e7aa4f845cf (diff)
downloadqemu-7622483395ef0e6c415af74bc9e7b0edf59cfe6c.tar.gz
pcnet: use qdev properties for configuration.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/sun4m.c')
-rw-r--r--hw/sun4m.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sun4m.c b/hw/sun4m.c
index 21f609c224..424cf6d476 100644
--- a/hw/sun4m.c
+++ b/hw/sun4m.c
@@ -396,7 +396,7 @@ static void lance_init(NICInfo *nd, target_phys_addr_t leaddr,
qemu_check_nic_model(&nd_table[0], "lance");
dev = qdev_create(NULL, "lance");
- dev->nd = nd;
+ qdev_set_nic_properties(dev, nd);
qdev_prop_set_ptr(dev, "dma", dma_opaque);
qdev_init_nofail(dev);
s = sysbus_from_qdev(dev);