From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51906) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V3LQ1-0006Ig-Ge for qemu-devel@nongnu.org; Sun, 28 Jul 2013 03:29:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V3LPu-0001VU-7G for qemu-devel@nongnu.org; Sun, 28 Jul 2013 03:29:29 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41584) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V3LPt-0001VJ-W7 for qemu-devel@nongnu.org; Sun, 28 Jul 2013 03:29:22 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6S7TLid008051 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 28 Jul 2013 03:29:21 -0400 From: Igor Mammedov Date: Sun, 28 Jul 2013 09:29:12 +0200 Message-Id: <1374996553-21828-6-git-send-email-imammedo@redhat.com> In-Reply-To: <1374996553-21828-1-git-send-email-imammedo@redhat.com> References: <1374996553-21828-1-git-send-email-imammedo@redhat.com> Subject: [Qemu-devel] [PATCH 5/6] pc: add Q35 to QOM composition tree under /machine List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: mst@redhat.com Signed-off-by: Igor Mammedov --- hw/i386/pc_q35.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index 0b1d2e3..5140caf 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -130,7 +130,7 @@ static void pc_q35_init(QEMUMachineInitArgs *args) /* create pci host bus */ q35_host = Q35_HOST_DEVICE(qdev_create(NULL, TYPE_Q35_HOST_DEVICE)); - + object_property_add_child(qdev_get_machine(), "q35", OBJECT(q35_host), NULL); q35_host->mch.ram_memory = ram_memory; q35_host->mch.pci_address_space = pci_memory; q35_host->mch.system_memory = get_system_memory(); -- 1.8.3.1