summaryrefslogtreecommitdiff
path: root/hw/qdev.c
diff options
context:
space:
mode:
authorAmit Shah <amit.shah@redhat.com>2009-09-29 15:51:03 +0530
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-05 09:32:52 -0500
commitc8cd1fcd668f514a84f5e6d93a8e6f19c082708a (patch)
tree4c3a1784300bbad1761b407ff4e9e84507d9a195 /hw/qdev.c
parentfa0cfdf24a75f3e6aa6c8b6efcbebd09e7f054aa (diff)
downloadqemu-c8cd1fcd668f514a84f5e6d93a8e6f19c082708a.tar.gz
qdev: show name of device that fails init
When initialising a device fails, show the name of the failing device. The current behaviour is to silently exit on such errors. Signed-off-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/qdev.c')
-rw-r--r--hw/qdev.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/qdev.c b/hw/qdev.c
index 86cf81be9b..b2d11cebba 100644
--- a/hw/qdev.c
+++ b/hw/qdev.c
@@ -215,6 +215,7 @@ DeviceState *qdev_device_add(QemuOpts *opts)
return NULL;
}
if (qdev_init(qdev) != 0) {
+ qemu_error("Error initializing device %s\n", driver);
qdev_free(qdev);
return NULL;
}