From patchwork Thu Sep 10 09:43:28 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 33302 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by bilbo.ozlabs.org (Postfix) with ESMTPS id 2E834B6F34 for ; Thu, 10 Sep 2009 20:41:45 +1000 (EST) Received: from localhost ([127.0.0.1]:36204 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mlh5y-0004c9-95 for incoming@patchwork.ozlabs.org; Thu, 10 Sep 2009 06:41:42 -0400 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 Received: from zweiblum.home.kraxel.org (vpn2-9-74.ams2.redhat.com [10.36.9.74]) by int-mx04.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with SMTP id n8A9hepN019345; Thu, 10 Sep 2009 05:43:42 -0400 Received: by zweiblum.home.kraxel.org (Postfix, from userid 500) id C584F700E4; Thu, 10 Sep 2009 11:43:35 +0200 (CEST) From: Gerd Hoffmann To: qemu-devel@nongnu.org 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> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.17 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Gerd Hoffmann Subject: [Qemu-devel] [PATCH v2 06/13] qdev: tag isabus-bridge as no-user X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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)