| Submitter | Luiz Capitulino |
|---|---|
| Date | Nov. 12, 2009, 8:42 p.m. |
| Message ID | <1258058554-22872-9-git-send-email-lcapitulino@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/38285/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/qdev.c b/hw/qdev.c index d19d531..875ca50 100644 --- a/hw/qdev.c +++ b/hw/qdev.c @@ -29,6 +29,7 @@ #include "qdev.h" #include "sysemu.h" #include "monitor.h" +#include "qerror.h" static int qdev_hotplug = 0; @@ -176,8 +177,7 @@ DeviceState *qdev_device_add(QemuOpts *opts) /* find driver */ info = qdev_find_info(NULL, driver); if (!info) { - qemu_error("Device \"%s\" not found. Try -device '?' for a list.\n", - driver); + qemu_error_new(QERR_DEVICE_NOT_FOUND, driver); return NULL; } if (info->no_user) {
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> --- hw/qdev.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)