diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-08-31 14:23:58 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-09 14:55:17 -0500 |
commit | 755700885432a8692c53549dd177d7d52d5cdd17 (patch) | |
tree | 55686795d4c9accc5fa6ce743e87ed81ffb26c5f /hw | |
parent | 4d00781419371beea3704229f8ce1ca772d41ec8 (diff) |
qdev: add error message to qdev_device_add().
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/qdev.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -186,8 +186,11 @@ DeviceState *qdev_device_add(QemuOpts *opts) } else { bus = qbus_find_recursive(main_system_bus, NULL, info->bus_info); } - if (!bus) + if (!bus) { + qemu_error("Did not find %s bus for %s\n", + path ? path : info->bus_info->name, info->name); return NULL; + } /* create device, set properties */ qdev = qdev_create(bus, driver); |