summaryrefslogtreecommitdiff
path: root/hw/usb/bus.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2012-02-03 12:28:43 -0600
committerAndreas Färber <afaerber@suse.de>2012-06-18 15:14:38 +0200
commit09e5ab6360ce78fc0acbfe29ac100f8148397ca6 (patch)
tree6c4e00031dd05bf33bb3dba05091524e244d32b7 /hw/usb/bus.c
parentfdae245f56f97387bb33b2db03aa015f206c24b2 (diff)
downloadqemu-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 'hw/usb/bus.c')
-rw-r--r--hw/usb/bus.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/usb/bus.c b/hw/usb/bus.c
index 64887d5ecb..8b08f93389 100644
--- a/hw/usb/bus.c
+++ b/hw/usb/bus.c
@@ -467,9 +467,8 @@ static char *usb_get_dev_path(DeviceState *qdev)
DeviceState *hcd = qdev->parent_bus->parent;
char *id = NULL;
- if ((dev->flags & (1 << USB_DEV_FLAG_FULL_PATH)) &&
- hcd && hcd->parent_bus && hcd->parent_bus->info->get_dev_path) {
- id = hcd->parent_bus->info->get_dev_path(hcd);
+ if (dev->flags & (1 << USB_DEV_FLAG_FULL_PATH)) {
+ id = qdev_get_dev_path(hcd);
}
if (id) {
char *ret = g_strdup_printf("%s/%s", id, dev->port->path);