From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MlgC1-0008W4-01 for qemu-devel@nongnu.org; Thu, 10 Sep 2009 05:43:53 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MlgBt-0008Rx-Bw for qemu-devel@nongnu.org; Thu, 10 Sep 2009 05:43:50 -0400 Received: from [199.232.76.173] (port=39541 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MlgBt-0008Rs-71 for qemu-devel@nongnu.org; Thu, 10 Sep 2009 05:43:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:29712) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MlgBs-0005VX-NT for qemu-devel@nongnu.org; Thu, 10 Sep 2009 05:43:45 -0400 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n8A9hhSs018920 for ; Thu, 10 Sep 2009 05:43:43 -0400 From: Gerd Hoffmann Date: Thu, 10 Sep 2009 11:43:28 +0200 Message-Id: <1252575815-7824-7-git-send-email-kraxel@redhat.com> In-Reply-To: <1252575815-7824-1-git-send-email-kraxel@redhat.com> References: <1252575815-7824-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 06/13] qdev: tag isabus-bridge as no-user List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann isabus-bridge isn't supposed to be added via -device ... Signed-off-by: Gerd Hoffmann --- hw/isa-bus.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/isa-bus.c b/hw/isa-bus.c index bfd0fff..3cc17b2 100644 --- a/hw/isa-bus.c +++ b/hw/isa-bus.c @@ -145,6 +145,7 @@ static SysBusDeviceInfo isabus_bridge_info = { .init = isabus_bridge_init, .qdev.name = "isabus-bridge", .qdev.size = sizeof(SysBusDevice), + .qdev.no_user = 1, }; static void isabus_register_devices(void) -- 1.6.2.5