diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-03 12:28:43 -0600 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2012-06-18 15:14:38 +0200 |
commit | 09e5ab6360ce78fc0acbfe29ac100f8148397ca6 (patch) | |
tree | 6c4e00031dd05bf33bb3dba05091524e244d32b7 /exec.c | |
parent | fdae245f56f97387bb33b2db03aa015f206c24b2 (diff) | |
download | hqemu-09e5ab6360ce78fc0acbfe29ac100f8148397ca6.zip hqemu-09e5ab6360ce78fc0acbfe29ac100f8148397ca6.tar.gz |
qdev: Use wrapper for qdev_get_path
This makes it easier to remove it from BusInfo.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
[AF: Drop now unnecessary NULL initialization in scsibus_get_dev_path()]
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'exec.c')
-rw-r--r-- | exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2603,8 +2603,8 @@ void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev) assert(new_block); assert(!new_block->idstr[0]); - if (dev && dev->parent_bus && dev->parent_bus->info->get_dev_path) { - char *id = dev->parent_bus->info->get_dev_path(dev); + if (dev) { + char *id = qdev_get_dev_path(dev); if (id) { snprintf(new_block->idstr, sizeof(new_block->idstr), "%s/", id); g_free(id); |