From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N8gVi-0007zS-1Y for qemu-devel@nongnu.org; Thu, 12 Nov 2009 15:43:18 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N8gVd-0007wl-Fs for qemu-devel@nongnu.org; Thu, 12 Nov 2009 15:43:17 -0500 Received: from [199.232.76.173] (port=33546 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N8gVc-0007wV-P3 for qemu-devel@nongnu.org; Thu, 12 Nov 2009 15:43:12 -0500 Received: from mx1.redhat.com ([209.132.183.28]:29741) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N8gVc-0006jH-7t for qemu-devel@nongnu.org; Thu, 12 Nov 2009 15:43:12 -0500 From: Luiz Capitulino Date: Thu, 12 Nov 2009 18:42:33 -0200 Message-Id: <1258058554-22872-9-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1258058554-22872-1-git-send-email-lcapitulino@redhat.com> References: <1258058554-22872-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 8/9] qdev: Use QError for 'device not found' error List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, kraxel@redhat.com, armbru@redhat.com Signed-off-by: Luiz Capitulino --- hw/qdev.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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) { -- 1.6.5.2.155.gbb47