From patchwork Thu Jan 6 14:14:40 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 77716 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 ozlabs.org (Postfix) with ESMTPS id A2E1EB70A9 for ; Fri, 7 Jan 2011 01:16:51 +1100 (EST) Received: from localhost ([127.0.0.1]:56781 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Paqde-0002Jx-3m for incoming@patchwork.ozlabs.org; Thu, 06 Jan 2011 09:16:26 -0500 Received: from [140.186.70.92] (port=47523 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Paqc4-0002Fa-6P for qemu-devel@nongnu.org; Thu, 06 Jan 2011 09:14:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Paqc0-0000c6-I6 for qemu-devel@nongnu.org; Thu, 06 Jan 2011 09:14:45 -0500 Received: from mx1.redhat.com ([209.132.183.28]:36099) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Paqc0-0000be-Az for qemu-devel@nongnu.org; Thu, 06 Jan 2011 09:14:44 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id p06EEh4h013487 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 6 Jan 2011 09:14:43 -0500 Received: from rincewind.home.kraxel.org (vpn1-4-139.ams2.redhat.com [10.36.4.139]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p06EEgYt024686; Thu, 6 Jan 2011 09:14:42 -0500 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 58875415A8; Thu, 6 Jan 2011 15:14:41 +0100 (CET) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Thu, 6 Jan 2011 15:14:40 +0100 Message-Id: <1294323280-21692-5-git-send-email-kraxel@redhat.com> In-Reply-To: <1294323280-21692-1-git-send-email-kraxel@redhat.com> References: <1294323280-21692-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: Gerd Hoffmann Subject: [Qemu-devel] [PATCH v2 4/4] qxl: tag as not hotpluggable 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 Signed-off-by: Gerd Hoffmann --- hw/qxl.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/qxl.c b/hw/qxl.c index 207aa63..bd71e58 100644 --- a/hw/qxl.c +++ b/hw/qxl.c @@ -1546,6 +1546,7 @@ static PCIDeviceInfo qxl_info_primary = { .qdev.size = sizeof(PCIQXLDevice), .qdev.reset = qxl_reset_handler, .qdev.vmsd = &qxl_vmstate, + .no_hotplug = 1, .init = qxl_init_primary, .config_write = qxl_write_config, .romfile = "vgabios-qxl.bin",