qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 7/9] qdev: Use QError for not found error


From: Luiz Capitulino
Subject: [Qemu-devel] [PATCH 7/9] qdev: Use QError for not found error
Date: Tue, 13 Oct 2009 13:57:04 -0300

Signed-off-by: Luiz Capitulino <address@hidden>
---
 hw/qdev.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/qdev.c b/hw/qdev.c
index 906e897..3ce48f7 100644
--- a/hw/qdev.c
+++ b/hw/qdev.c
@@ -28,6 +28,7 @@
 #include "net.h"
 #include "qdev.h"
 #include "sysemu.h"
+#include "qerror.h"
 #include "monitor.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_structed(QERR_QDEV_NFOUND, "{ s: s }", "name", driver);
         return NULL;
     }
     if (info->no_user) {
-- 
1.6.5.rc3.8.g8ba5e





reply via email to

[Prev in Thread] Current Thread [Next in Thread]