aboutsummaryrefslogtreecommitdiff
path: root/hw/e1000.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-12-04 11:17:51 -0600
committerAnthony Liguori <aliguori@us.ibm.com>2012-01-27 10:50:39 -0600
commitf79f2bfc6aae76718652f0b3e15a849f7b58104a (patch)
treebe827c0b6a7ff5e2a521fd5d604773e8f079413c /hw/e1000.c
parent30fbb9fc7cd73abc32ff71ceb59e9a3be37ac128 (diff)
downloadqemu-f79f2bfc6aae76718652f0b3e15a849f7b58104a.zip
qemu-f79f2bfc6aae76718652f0b3e15a849f7b58104a.tar.gz
qemu-f79f2bfc6aae76718652f0b3e15a849f7b58104a.tar.bz2
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 <aliguori@us.ibm.com>
Diffstat (limited to 'hw/e1000.c')
-rw-r--r--hw/e1000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/e1000.c b/hw/e1000.c
index e4362ea..7fc7318 100644
--- a/hw/e1000.c
+++ b/hw/e1000.c
@@ -1182,7 +1182,7 @@ static int pci_e1000_init(PCIDevice *pci_dev)
d->eeprom_data[EEPROM_CHECKSUM_REG] = checksum;
d->nic = qemu_new_nic(&net_e1000_info, &d->conf,
- qdev_get_info(&d->dev.qdev)->name, d->dev.qdev.id, d);
+ object_get_typename(OBJECT(d)), d->dev.qdev.id, d);
qemu_format_nic_info_str(&d->nic->nc, macaddr);