From f79f2bfc6aae76718652f0b3e15a849f7b58104a Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Sun, 4 Dec 2011 11:17:51 -0600 Subject: qdev: don't access name through info We already have a QOM interface for this so let's use it. Signed-off-by: Anthony Liguori --- hw/opencores_eth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/opencores_eth.c') diff --git a/hw/opencores_eth.c b/hw/opencores_eth.c index d4d3529d71..5161b0cfc9 100644 --- a/hw/opencores_eth.c +++ b/hw/opencores_eth.c @@ -717,7 +717,7 @@ static int sysbus_open_eth_init(SysBusDevice *dev) sysbus_init_irq(dev, &s->irq); s->nic = qemu_new_nic(&net_open_eth_info, &s->conf, - qdev_get_info(&s->dev.qdev)->name, s->dev.qdev.id, s); + object_get_typename(OBJECT(s)), s->dev.qdev.id, s); return 0; } -- cgit 1.4.1