mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
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>
This commit is contained in:
parent
fdae245f56
commit
09e5ab6360
7 changed files with 33 additions and 17 deletions
16
hw/qdev.c
16
hw/qdev.c
|
@ -494,6 +494,22 @@ char* qdev_get_fw_dev_path(DeviceState *dev)
|
|||
return strdup(path);
|
||||
}
|
||||
|
||||
char *qdev_get_dev_path(DeviceState *dev)
|
||||
{
|
||||
BusInfo *businfo;
|
||||
|
||||
if (!dev || !dev->parent_bus) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
businfo = dev->parent_bus->info;
|
||||
if (businfo->get_dev_path) {
|
||||
return businfo->get_dev_path(dev);
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* Legacy property handling
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue